pub struct CollectiveResult {
pub patterns: Vec<CollectivePatternEntry>,
pub collective_available: bool,
}Expand description
Result of a collective patterns query.
Fields§
§patterns: Vec<CollectivePatternEntry>Pattern entries found.
collective_available: boolWhether collective data is available.
Trait Implementations§
Source§impl Clone for CollectiveResult
impl Clone for CollectiveResult
Source§fn clone(&self) -> CollectiveResult
fn clone(&self) -> CollectiveResult
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 moreAuto Trait Implementations§
impl Freeze for CollectiveResult
impl RefUnwindSafe for CollectiveResult
impl Send for CollectiveResult
impl Sync for CollectiveResult
impl Unpin for CollectiveResult
impl UnsafeUnpin for CollectiveResult
impl UnwindSafe for CollectiveResult
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