pub struct DraftInfo {
pub media_id: String,
pub content: DraftContent,
pub update_time: u64,
}
Expand description
Draft information from WeChat API.
Fields§
§media_id: String
§content: DraftContent
§update_time: u64
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DraftInfo
impl<'de> Deserialize<'de> for DraftInfo
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 DraftInfo
impl RefUnwindSafe for DraftInfo
impl Send for DraftInfo
impl Sync for DraftInfo
impl Unpin for DraftInfo
impl UnwindSafe for DraftInfo
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