pub enum ContentParam {
Array(Vec<InputContent>),
Single(String),
}Variants§
Array(Vec<InputContent>)
Single(String)
Trait Implementations§
Source§impl Clone for ContentParam
impl Clone for ContentParam
Source§fn clone(&self) -> ContentParam
fn clone(&self) -> ContentParam
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ContentParam
impl Debug for ContentParam
Source§impl<'de> Deserialize<'de> for ContentParam
impl<'de> Deserialize<'de> for ContentParam
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 PartialEq for ContentParam
impl PartialEq for ContentParam
Source§impl Serialize for ContentParam
impl Serialize for ContentParam
impl StructuralPartialEq for ContentParam
Auto Trait Implementations§
impl Freeze for ContentParam
impl RefUnwindSafe for ContentParam
impl Send for ContentParam
impl Sync for ContentParam
impl Unpin for ContentParam
impl UnwindSafe for ContentParam
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