pub struct SelectionList {
pub values: Option<Vec<Selection>>,
}Expand description
Wrapper for SelectionList Field value.
This type is not used in any activity, and only used as part of another schema.
Fields§
§values: Option<Vec<Selection>>Selection values.
Trait Implementations§
Source§impl Clone for SelectionList
impl Clone for SelectionList
Source§fn clone(&self) -> SelectionList
fn clone(&self) -> SelectionList
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 SelectionList
impl Debug for SelectionList
Source§impl Default for SelectionList
impl Default for SelectionList
Source§fn default() -> SelectionList
fn default() -> SelectionList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SelectionList
impl<'de> Deserialize<'de> for SelectionList
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 Serialize for SelectionList
impl Serialize for SelectionList
impl Part for SelectionList
Auto Trait Implementations§
impl Freeze for SelectionList
impl RefUnwindSafe for SelectionList
impl Send for SelectionList
impl Sync for SelectionList
impl Unpin for SelectionList
impl UnwindSafe for SelectionList
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