pub struct OrgUnit {
pub block_inheritance: bool,
pub description: String,
pub etag: String,
pub kind: String,
pub name: String,
pub org_unit_id: String,
pub org_unit_path: String,
pub parent_org_unit_id: String,
pub parent_org_unit_path: String,
}
Expand description
Managing your account’s organizational units allows you to configure your users’ access to services and custom settings. For more information about common organizational unit tasks, see the Developer’s Guide.
Fields§
§block_inheritance: bool
Managing your account’s organizational units allows you to configure your users’ access to services and custom settings. For more information about common organizational unit tasks, see the Developer’s Guide.
description: String
Managing your account’s organizational units allows you to configure your users’ access to services and custom settings. For more information about common organizational unit tasks, see the Developer’s Guide.
etag: String
Managing your account’s organizational units allows you to configure your users’ access to services and custom settings. For more information about common organizational unit tasks, see the Developer’s Guide.
kind: String
Managing your account’s organizational units allows you to configure your users’ access to services and custom settings. For more information about common organizational unit tasks, see the Developer’s Guide.
name: String
Managing your account’s organizational units allows you to configure your users’ access to services and custom settings. For more information about common organizational unit tasks, see the Developer’s Guide.
org_unit_id: String
Managing your account’s organizational units allows you to configure your users’ access to services and custom settings. For more information about common organizational unit tasks, see the Developer’s Guide.
org_unit_path: String
Managing your account’s organizational units allows you to configure your users’ access to services and custom settings. For more information about common organizational unit tasks, see the Developer’s Guide.
parent_org_unit_id: String
Managing your account’s organizational units allows you to configure your users’ access to services and custom settings. For more information about common organizational unit tasks, see the Developer’s Guide.
parent_org_unit_path: String
Managing your account’s organizational units allows you to configure your users’ access to services and custom settings. For more information about common organizational unit tasks, see the Developer’s Guide.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for OrgUnit
impl<'de> Deserialize<'de> for OrgUnit
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>,
Source§impl JsonSchema for OrgUnit
impl JsonSchema for OrgUnit
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read moreimpl StructuralPartialEq for OrgUnit
Auto Trait Implementations§
impl Freeze for OrgUnit
impl RefUnwindSafe for OrgUnit
impl Send for OrgUnit
impl Sync for OrgUnit
impl Unpin for OrgUnit
impl UnwindSafe for OrgUnit
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more