pub struct AccessScope {
pub client_scope: Option<ClientScope>,
}Expand description
Access scope represents the client scope, etc. to which the settings will be applied to.
This type is not used in any activity, and only used as part of another schema.
Fields§
§client_scope: Option<ClientScope>Optional. Client scope for this access scope.
Trait Implementations§
Source§impl Clone for AccessScope
impl Clone for AccessScope
Source§fn clone(&self) -> AccessScope
fn clone(&self) -> AccessScope
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 AccessScope
impl Debug for AccessScope
Source§impl Default for AccessScope
impl Default for AccessScope
Source§fn default() -> AccessScope
fn default() -> AccessScope
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccessScope
impl<'de> Deserialize<'de> for AccessScope
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 Serialize for AccessScope
impl Serialize for AccessScope
impl Part for AccessScope
Auto Trait Implementations§
impl Freeze for AccessScope
impl RefUnwindSafe for AccessScope
impl Send for AccessScope
impl Sync for AccessScope
impl Unpin for AccessScope
impl UnwindSafe for AccessScope
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