pub struct TextList {
pub values: Option<Vec<Text>>,
}Expand description
Wrapper for Text List Field value.
This type is not used in any activity, and only used as part of another schema.
Fields§
§values: Option<Vec<Text>>Text values.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TextList
impl<'de> Deserialize<'de> for TextList
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 Part for TextList
Auto Trait Implementations§
impl Freeze for TextList
impl RefUnwindSafe for TextList
impl Send for TextList
impl Sync for TextList
impl Unpin for TextList
impl UnwindSafe for TextList
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