pub struct ComparisonSet {
pub roster: Vec<String>,
pub shared_windows: Vec<String>,
}Expand description
The result of resolving a roster into a comparison set.
Fields§
§roster: Vec<String>The locked roster, in the order supplied.
Windows EVERY roster member completed, sorted ascending (deterministic).
Trait Implementations§
Source§impl Clone for ComparisonSet
impl Clone for ComparisonSet
Source§fn clone(&self) -> ComparisonSet
fn clone(&self) -> ComparisonSet
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 ComparisonSet
impl Debug for ComparisonSet
Source§impl<'de> Deserialize<'de> for ComparisonSet
impl<'de> Deserialize<'de> for ComparisonSet
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 ComparisonSet
Source§impl PartialEq for ComparisonSet
impl PartialEq for ComparisonSet
Source§fn eq(&self, other: &ComparisonSet) -> bool
fn eq(&self, other: &ComparisonSet) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ComparisonSet
impl Serialize for ComparisonSet
impl StructuralPartialEq for ComparisonSet
Auto Trait Implementations§
impl Freeze for ComparisonSet
impl RefUnwindSafe for ComparisonSet
impl Send for ComparisonSet
impl Sync for ComparisonSet
impl Unpin for ComparisonSet
impl UnsafeUnpin for ComparisonSet
impl UnwindSafe for ComparisonSet
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