pub struct FoundGroups {
pub header: Option<String>,
pub total: Option<i32>,
pub groups: Option<Vec<FoundGroup>>,
}
Expand description
FoundGroups : The list of groups found in a search, including header text (Showing X of Y matching groups) and total of matched groups.
Fields§
§header: Option<String>
Header text indicating the number of groups in the response and the total number of groups found in the search.
total: Option<i32>
The total number of groups found in the search.
groups: Option<Vec<FoundGroup>>
Implementations§
Source§impl FoundGroups
impl FoundGroups
Sourcepub fn new() -> FoundGroups
pub fn new() -> FoundGroups
The list of groups found in a search, including header text (Showing X of Y matching groups) and total of matched groups.
Trait Implementations§
Source§impl Clone for FoundGroups
impl Clone for FoundGroups
Source§fn clone(&self) -> FoundGroups
fn clone(&self) -> FoundGroups
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 FoundGroups
impl Debug for FoundGroups
Source§impl Default for FoundGroups
impl Default for FoundGroups
Source§fn default() -> FoundGroups
fn default() -> FoundGroups
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FoundGroups
impl<'de> Deserialize<'de> for FoundGroups
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 PartialEq for FoundGroups
impl PartialEq for FoundGroups
Source§impl Serialize for FoundGroups
impl Serialize for FoundGroups
impl StructuralPartialEq for FoundGroups
Auto Trait Implementations§
impl Freeze for FoundGroups
impl RefUnwindSafe for FoundGroups
impl Send for FoundGroups
impl Sync for FoundGroups
impl Unpin for FoundGroups
impl UnwindSafe for FoundGroups
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