pub struct FileField {
pub name: String,
pub url: String,
pub _type: String,
}
Expand description
Represents a file field as stored in a ParseObject. This struct is used for serialization and deserialization when a ParseFile is part of a ParseObject.
Fields§
§name: String
§url: String
§_type: String
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FileField
impl<'de> Deserialize<'de> for FileField
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
impl StructuralPartialEq for FileField
Auto Trait Implementations§
impl Freeze for FileField
impl RefUnwindSafe for FileField
impl Send for FileField
impl Sync for FileField
impl Unpin for FileField
impl UnwindSafe for FileField
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