pub struct Repost {
pub created_at: Option<String>,
pub type: Option<String>,
pub user: Option<User>,
pub uuid: Option<String>,
pub caption: Option<String>,
pub track: Option<Track>,
}Fields§
§created_at: Option<String>§type: Option<String>§user: Option<User>§uuid: Option<String>§caption: Option<String>§track: Option<Track>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Repost
impl<'de> Deserialize<'de> for Repost
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 Repost
impl RefUnwindSafe for Repost
impl Send for Repost
impl Sync for Repost
impl Unpin for Repost
impl UnwindSafe for Repost
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