pub struct WallPost {
pub id: i64,
pub owner_id: i64,
pub from_id: i64,
pub date: i64,
pub text: String,
pub attachments: Vec<Attachment>,
}Expand description
Wall post
Fields§
§id: i64Post ID
owner_id: i64Owner ID
from_id: i64From ID
date: i64Date
text: StringText
attachments: Vec<Attachment>Attachments
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WallPost
impl<'de> Deserialize<'de> for WallPost
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 WallPost
impl RefUnwindSafe for WallPost
impl Send for WallPost
impl Sync for WallPost
impl Unpin for WallPost
impl UnwindSafe for WallPost
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