pub struct FoundGroup {
pub name: Option<String>,
pub html: Option<String>,
pub labels: Option<Vec<GroupLabel>>,
pub group_id: Option<String>,
}
Expand description
FoundGroup : A group found in a search.
Fields§
§name: Option<String>
The name of the group.
html: Option<String>
The group name with the matched query string highlighted with the HTML bold tag.
labels: Option<Vec<GroupLabel>>
§group_id: Option<String>
The ID of the group, if available, which uniquely identifies the group across all Atlassian products. For example, 952d12c3-5b5b-4d04-bb32-44d383afc4b2.
Implementations§
Source§impl FoundGroup
impl FoundGroup
Sourcepub fn new() -> FoundGroup
pub fn new() -> FoundGroup
A group found in a search.
Trait Implementations§
Source§impl Clone for FoundGroup
impl Clone for FoundGroup
Source§fn clone(&self) -> FoundGroup
fn clone(&self) -> FoundGroup
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 FoundGroup
impl Debug for FoundGroup
Source§impl Default for FoundGroup
impl Default for FoundGroup
Source§fn default() -> FoundGroup
fn default() -> FoundGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FoundGroup
impl<'de> Deserialize<'de> for FoundGroup
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 FoundGroup
impl PartialEq for FoundGroup
Source§impl Serialize for FoundGroup
impl Serialize for FoundGroup
impl StructuralPartialEq for FoundGroup
Auto Trait Implementations§
impl Freeze for FoundGroup
impl RefUnwindSafe for FoundGroup
impl Send for FoundGroup
impl Sync for FoundGroup
impl Unpin for FoundGroup
impl UnwindSafe for FoundGroup
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