pub struct ProjectAvatars {
pub system: Option<Vec<Avatar>>,
pub custom: Option<Vec<Avatar>>,
}
Expand description
ProjectAvatars : List of project avatars.
Fields§
§system: Option<Vec<Avatar>>
List of avatars included with Jira. These avatars cannot be deleted.
custom: Option<Vec<Avatar>>
List of avatars added to Jira. These avatars may be deleted.
Implementations§
Source§impl ProjectAvatars
impl ProjectAvatars
Sourcepub fn new() -> ProjectAvatars
pub fn new() -> ProjectAvatars
List of project avatars.
Trait Implementations§
Source§impl Clone for ProjectAvatars
impl Clone for ProjectAvatars
Source§fn clone(&self) -> ProjectAvatars
fn clone(&self) -> ProjectAvatars
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 ProjectAvatars
impl Debug for ProjectAvatars
Source§impl Default for ProjectAvatars
impl Default for ProjectAvatars
Source§fn default() -> ProjectAvatars
fn default() -> ProjectAvatars
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectAvatars
impl<'de> Deserialize<'de> for ProjectAvatars
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 ProjectAvatars
impl PartialEq for ProjectAvatars
Source§impl Serialize for ProjectAvatars
impl Serialize for ProjectAvatars
impl StructuralPartialEq for ProjectAvatars
Auto Trait Implementations§
impl Freeze for ProjectAvatars
impl RefUnwindSafe for ProjectAvatars
impl Send for ProjectAvatars
impl Sync for ProjectAvatars
impl Unpin for ProjectAvatars
impl UnwindSafe for ProjectAvatars
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