pub struct Body {
pub alt_text: Option<String>,
pub board_id: String,
pub board_section_id: Option<String>,
pub description: Option<String>,
pub link: Option<String>,
pub title: Option<String>,
pub carousel_slots: Vec<CarouselSlot>,
pub note: Option<String>,
}Fields§
§alt_text: Option<String>§board_id: String§board_section_id: Option<String>§description: Option<String>§link: Option<String>§title: Option<String>§carousel_slots: Vec<CarouselSlot>§note: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Body
impl<'de> Deserialize<'de> for Body
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 Body
impl RefUnwindSafe for Body
impl Send for Body
impl Sync for Body
impl Unpin for Body
impl UnwindSafe for Body
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