pub struct Assignments(pub Vec<Assignment>);Expand description
Assignment capability: the whole assignee list is one component value
(empty ⇒ remove it). Its presence/contents drive Claim (spec §8).
Tuple Fields§
§0: Vec<Assignment>Trait Implementations§
Source§impl Clone for Assignments
impl Clone for Assignments
Source§fn clone(&self) -> Assignments
fn clone(&self) -> Assignments
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Assignments
impl Debug for Assignments
Source§impl Default for Assignments
impl Default for Assignments
Source§fn default() -> Assignments
fn default() -> Assignments
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Assignments
impl<'de> Deserialize<'de> for Assignments
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 Eq for Assignments
Source§impl PartialEq for Assignments
impl PartialEq for Assignments
Source§fn eq(&self, other: &Assignments) -> bool
fn eq(&self, other: &Assignments) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Assignments
impl Serialize for Assignments
impl StructuralPartialEq for Assignments
Auto Trait Implementations§
impl Freeze for Assignments
impl RefUnwindSafe for Assignments
impl Send for Assignments
impl Sync for Assignments
impl Unpin for Assignments
impl UnsafeUnpin for Assignments
impl UnwindSafe for Assignments
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