pub struct FileUpdate {
pub id: String,
pub description: String,
}Expand description
A file update as part of a bulk file update.
Fields§
§id: StringThe file id
description: StringThe file description.
Though the API docs seem to say that this field is nullable, it is not.
Trait Implementations§
Source§impl Debug for FileUpdate
impl Debug for FileUpdate
Source§impl<'de> Deserialize<'de> for FileUpdate
impl<'de> Deserialize<'de> for FileUpdate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FileUpdate
impl RefUnwindSafe for FileUpdate
impl Send for FileUpdate
impl Sync for FileUpdate
impl Unpin for FileUpdate
impl UnwindSafe for FileUpdate
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more