#[non_exhaustive]pub struct OrganizationConfiguration {
pub enable_integration: bool,
}Expand description
Configuration information for Organizations.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.enable_integration: boolEnables Organizations integration.
Implementations§
source§impl OrganizationConfiguration
impl OrganizationConfiguration
sourcepub fn enable_integration(&self) -> bool
pub fn enable_integration(&self) -> bool
Enables Organizations integration.
source§impl OrganizationConfiguration
impl OrganizationConfiguration
sourcepub fn builder() -> OrganizationConfigurationBuilder
pub fn builder() -> OrganizationConfigurationBuilder
Creates a new builder-style object to manufacture OrganizationConfiguration.
Trait Implementations§
source§impl Clone for OrganizationConfiguration
impl Clone for OrganizationConfiguration
source§fn clone(&self) -> OrganizationConfiguration
fn clone(&self) -> OrganizationConfiguration
Returns a copy 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 OrganizationConfiguration
impl Debug for OrganizationConfiguration
source§impl PartialEq<OrganizationConfiguration> for OrganizationConfiguration
impl PartialEq<OrganizationConfiguration> for OrganizationConfiguration
source§fn eq(&self, other: &OrganizationConfiguration) -> bool
fn eq(&self, other: &OrganizationConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for OrganizationConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for OrganizationConfiguration
impl Send for OrganizationConfiguration
impl Sync for OrganizationConfiguration
impl Unpin for OrganizationConfiguration
impl UnwindSafe for OrganizationConfiguration
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