pub struct Post {
pub post_id: String,
pub parent_id: Option<String>,
pub message: String,
pub created: String,
pub last_edited: String,
pub comments_state: String,
pub subspace: String,
pub additional_attributes: Option<Vec<Attribute>>,
pub creator: String,
pub attachments: Option<Vec<Attachment>>,
pub poll: Option<Poll>,
}Fields§
§post_id: String§parent_id: Option<String>§message: String§created: String§last_edited: String§comments_state: String§subspace: String§additional_attributes: Option<Vec<Attribute>>§creator: String§attachments: Option<Vec<Attachment>>§poll: Option<Poll>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Post
impl<'de> Deserialize<'de> for Post
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
Source§impl JsonSchema for Post
impl JsonSchema for Post
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq for Post
Auto Trait Implementations§
impl Freeze for Post
impl RefUnwindSafe for Post
impl Send for Post
impl Sync for Post
impl Unpin for Post
impl UnwindSafe for Post
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