pub struct ProjectForScope {
pub param_self: Option<String>,
pub id: Option<String>,
pub key: Option<String>,
pub name: Option<String>,
pub project_type_key: Option<ProjectTypeKey>,
pub simplified: Option<bool>,
pub avatar_urls: Option<Box<AvatarUrlsBean>>,
pub project_category: Option<Box<UpdatedProjectCategory>>,
}
Expand description
ProjectForScope : Details about a next-gen project.
Fields§
§param_self: Option<String>
The URL of the project details.
id: Option<String>
The ID of the project.
key: Option<String>
The key of the project.
name: Option<String>
The name of the project.
project_type_key: Option<ProjectTypeKey>
The project type of the project.
simplified: Option<bool>
Whether or not the project is simplified.
avatar_urls: Option<Box<AvatarUrlsBean>>
The URLs of the project’s avatars.
project_category: Option<Box<UpdatedProjectCategory>>
The category the project belongs to.
Implementations§
Source§impl ProjectForScope
impl ProjectForScope
Sourcepub fn new() -> ProjectForScope
pub fn new() -> ProjectForScope
Details about a next-gen project.
Trait Implementations§
Source§impl Clone for ProjectForScope
impl Clone for ProjectForScope
Source§fn clone(&self) -> ProjectForScope
fn clone(&self) -> ProjectForScope
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 ProjectForScope
impl Debug for ProjectForScope
Source§impl Default for ProjectForScope
impl Default for ProjectForScope
Source§fn default() -> ProjectForScope
fn default() -> ProjectForScope
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectForScope
impl<'de> Deserialize<'de> for ProjectForScope
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 ProjectForScope
impl PartialEq for ProjectForScope
Source§impl Serialize for ProjectForScope
impl Serialize for ProjectForScope
impl StructuralPartialEq for ProjectForScope
Auto Trait Implementations§
impl Freeze for ProjectForScope
impl RefUnwindSafe for ProjectForScope
impl Send for ProjectForScope
impl Sync for ProjectForScope
impl Unpin for ProjectForScope
impl UnwindSafe for ProjectForScope
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