pub struct ProjectServices {
pub account_experience: Option<Box<ProjectServiceAccountExperience>>,
pub identity: Option<Box<ProjectServiceIdentity>>,
pub oauth2: Option<Box<ProjectServiceOAuth2>>,
pub permission: Option<Box<ProjectServicePermission>>,
}Fields§
§account_experience: Option<Box<ProjectServiceAccountExperience>>§identity: Option<Box<ProjectServiceIdentity>>§oauth2: Option<Box<ProjectServiceOAuth2>>§permission: Option<Box<ProjectServicePermission>>Implementations§
Source§impl ProjectServices
impl ProjectServices
pub fn new() -> ProjectServices
Trait Implementations§
Source§impl Clone for ProjectServices
impl Clone for ProjectServices
Source§fn clone(&self) -> ProjectServices
fn clone(&self) -> ProjectServices
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 ProjectServices
impl Debug for ProjectServices
Source§impl Default for ProjectServices
impl Default for ProjectServices
Source§fn default() -> ProjectServices
fn default() -> ProjectServices
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectServices
impl<'de> Deserialize<'de> for ProjectServices
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 ProjectServices
impl PartialEq for ProjectServices
Source§impl Serialize for ProjectServices
impl Serialize for ProjectServices
impl StructuralPartialEq for ProjectServices
Auto Trait Implementations§
impl Freeze for ProjectServices
impl RefUnwindSafe for ProjectServices
impl Send for ProjectServices
impl Sync for ProjectServices
impl Unpin for ProjectServices
impl UnwindSafe for ProjectServices
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