pub struct PostBlog {
pub id: Option<String>,
}Expand description
Data about the blog containing this Post.
This type is not used in any activity, and only used as part of another schema.
Fields§
§id: Option<String>The identifier of the Blog that contains this Post.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PostBlog
impl<'de> Deserialize<'de> for PostBlog
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 NestedType for PostBlog
impl Part for PostBlog
Auto Trait Implementations§
impl Freeze for PostBlog
impl RefUnwindSafe for PostBlog
impl Send for PostBlog
impl Sync for PostBlog
impl Unpin for PostBlog
impl UnwindSafe for PostBlog
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