Skip to main content

ProfileOrganization

Struct ProfileOrganization 

Source
pub struct ProfileOrganization {
Show 61 fields pub id: Uuid, pub name: String, pub status: OrganizationUserStatusType, pub type: OrganizationUserType, pub enabled: bool, pub use_policies: bool, pub use_groups: bool, pub use_directory: bool, pub use_events: bool, pub use_totp: bool, pub use_2fa: bool, pub use_api: bool, pub use_sso: bool, pub use_organization_domains: bool, pub use_key_connector: bool, pub use_scim: bool, pub use_custom_permissions: bool, pub use_reset_password: bool, pub use_secrets_manager: bool, pub use_password_manager: bool, pub use_activate_autofill_policy: bool, pub use_automatic_user_confirmation: bool, pub self_host: bool, pub users_get_premium: bool, pub seats: u32, pub max_collections: u32, pub max_storage_gb: Option<u32>, pub sso_bound: bool, pub identifier: Option<String>, pub permissions: Permissions, pub reset_password_enrolled: bool, pub user_id: Option<Uuid>, pub organization_user_id: Option<Uuid>, pub has_public_and_private_keys: bool, pub provider_id: Option<Uuid>, pub provider_name: Option<String>, pub provider_type: Option<ProviderType>, pub is_provider_user: bool, pub is_member: bool, pub family_sponsorship_friendly_name: Option<String>, pub family_sponsorship_available: bool, pub product_tier_type: ProductTierType, pub key_connector_enabled: bool, pub key_connector_url: Option<String>, pub family_sponsorship_last_sync_date: Option<DateTime<Utc>>, pub family_sponsorship_valid_until: Option<DateTime<Utc>>, pub family_sponsorship_to_delete: Option<bool>, pub access_secrets_manager: bool, pub limit_collection_creation: bool, pub limit_collection_deletion: bool, pub limit_item_deletion: bool, pub allow_admin_access_to_all_collection_items: bool, pub user_is_managed_by_organization: bool, pub use_access_intelligence: bool, pub use_admin_sponsored_families: bool, pub use_disable_sm_ads_for_users: bool, pub is_admin_initiated: bool, pub sso_enabled: bool, pub sso_member_decryption_type: Option<MemberDecryptionType>, pub use_phishing_blocker: bool, pub use_my_items: bool,
}
Expand description

Organization membership details from the user’s profile sync.

Contains the full set of entitlements, plan features, and metadata for a single organization that the current user belongs to.

Fields§

§id: Uuid

Unique identifier for the organization.

§name: String

Display name of the organization.

§status: OrganizationUserStatusType

The user’s membership status in the organization.

§type: OrganizationUserType

The user’s role in the organization.

§enabled: bool

Whether the organization is currently enabled.

§use_policies: bool

Whether the organization has access to policies features.

§use_groups: bool

Whether the organization has access to groups features.

§use_directory: bool

Whether the organization has access to directory sync features.

§use_events: bool

Whether the organization has access to event logging features.

§use_totp: bool

Whether the organization can enforce TOTP for members.

§use_2fa: bool

Whether the organization has access to two-factor authentication features.

§use_api: bool

Whether the organization has access to the Bitwarden Public API.

§use_sso: bool

Whether the organization has access to SSO features.

§use_organization_domains: bool

Whether the organization can manage verified domains.

§use_key_connector: bool

Whether the organization uses Key Connector for decryption.

§use_scim: bool

Whether the organization has access to SCIM provisioning.

§use_custom_permissions: bool

Whether the organization can use the OrganizationUserType::Custom role.

§use_reset_password: bool

Whether the organization has access to the account recovery (admin password reset) feature.

§use_secrets_manager: bool

Whether the organization has access to Secrets Manager.

§use_password_manager: bool

Whether the organization has access to Password Manager.

§use_activate_autofill_policy: bool

Whether the organization can use the activate autofill policy.

§use_automatic_user_confirmation: bool

Whether the organization can automatically confirm new members without manual admin approval.

§self_host: bool

Whether the organization can create a license file for a self-hosted instance.

§users_get_premium: bool

Whether organization members receive premium features.

§seats: u32

The number of licensed seats for the organization.

§max_collections: u32

The maximum number of collections the organization can create.

§max_storage_gb: Option<u32>

The maximum encrypted storage in gigabytes, if limited.

§sso_bound: bool

Whether the current user’s account is bound to this organization via SSO.

§identifier: Option<String>

The organization’s SSO identifier.

§permissions: Permissions

The current user’s custom permissions, relevant when OrganizationUserType::Custom is the user’s type.

§reset_password_enrolled: bool

Whether the current user is enrolled in account recovery for this organization.

§user_id: Option<Uuid>

The current user’s personal user ID.

§organization_user_id: Option<Uuid>

The current user’s organization membership ID.

§has_public_and_private_keys: bool

Whether the organization has both a public and private key configured.

§provider_id: Option<Uuid>

The ID of the provider managing this organization, if any.

§provider_name: Option<String>

The name of the provider managing this organization, if any.

§provider_type: Option<ProviderType>

The type of provider managing this organization, if any.

§is_provider_user: bool

Whether the current user accesses this organization through a provider.

§is_member: bool

Whether the current user is a direct member of this organization (as opposed to provider-only access).

§family_sponsorship_friendly_name: Option<String>

The friendly name of a pending families sponsorship, if any.

§family_sponsorship_available: bool

Whether the organization can sponsor a families plan for the current user.

§product_tier_type: ProductTierType

The subscription tier of the organization.

§key_connector_enabled: bool

Whether Key Connector is enabled for this organization.

§key_connector_url: Option<String>

The URL of the Key Connector service, if enabled.

§family_sponsorship_last_sync_date: Option<DateTime<Utc>>

The date the families sponsorship was last synced, if applicable.

§family_sponsorship_valid_until: Option<DateTime<Utc>>

The date the families sponsorship expires, if applicable.

§family_sponsorship_to_delete: Option<bool>

Whether the families sponsorship is scheduled for deletion.

§access_secrets_manager: bool

Whether the current user has access to Secrets Manager for this organization.

§limit_collection_creation: bool

Whether collection creation is restricted to owners and admins only.

When false, any member can create collections and automatically receives manage permissions over collections they create.

§limit_collection_deletion: bool

Whether collection deletion is restricted to owners and admins only.

When true, regular users cannot delete collections that they manage.

§limit_item_deletion: bool

Whether item deletion is restricted to members with the Manage collection permission.

When false, members with Edit permission can also delete items within their collections.

§allow_admin_access_to_all_collection_items: bool

Whether owners and admins have implicit manage permissions over all collections.

When true, owners and admins can alter items, groups, and permissions across all collections without requiring explicit collection assignments. When false, admins can only access collections where they have been explicitly assigned.

§user_is_managed_by_organization: bool

Whether the current user’s account is managed by this organization.

§use_access_intelligence: bool

Whether the organization has access to Access Intelligence features.

§use_admin_sponsored_families: bool

Whether the organization can sponsor families plans for members (Families For Enterprises).

§use_disable_sm_ads_for_users: bool

Whether Secrets Manager ads are disabled for users.

§is_admin_initiated: bool

Whether the organization’s Families For Enterprises sponsorship was initiated by an admin.

§sso_enabled: bool

Whether SSO login is currently enabled for this organization.

§sso_member_decryption_type: Option<MemberDecryptionType>

The decryption type used for SSO members, if SSO is enabled.

§use_phishing_blocker: bool

Whether the organization has access to phishing blocker features.

§use_my_items: bool

Whether the organization has access to the My Items collection feature. This allows users to store personal items in the organization vault if the Centralize Organization Ownership policy is enabled.

Trait Implementations§

Source§

impl Clone for ProfileOrganization

Source§

fn clone(&self) -> ProfileOrganization

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<UT> ConvertError<UT> for ProfileOrganization

Source§

fn try_convert_unexpected_callback_error( e: UnexpectedUniFFICallbackError, ) -> Result<Self>

Source§

impl Debug for ProfileOrganization

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ProfileOrganization

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for ProfileOrganization

Source§

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<UT> FfiConverter<UT> for ProfileOrganization

Source§

const TYPE_ID_META: MetadataBuffer

Type ID metadata, serialized into a [MetadataBuffer].
Source§

type FfiType = RustBuffer

The low-level type used for passing values of this type over the FFI. Read more
Source§

fn lower(v: Self) -> RustBuffer

Lower a rust value of the target type, into an FFI value of type Self::FfiType. Read more
Source§

fn try_lift(buf: RustBuffer) -> Result<Self>

Lift a rust value of the target type, from an FFI value of type Self::FfiType. Read more
Source§

fn write(obj: Self, buf: &mut Vec<u8>)

Write a rust value into a buffer, to send over the FFI in serialized form. Read more
Source§

fn try_read(buf: &mut &[u8]) -> Result<Self>

Read a rust value from a buffer, received over the FFI in serialized form. Read more
Source§

impl<UT> Lift<UT> for ProfileOrganization

Source§

type FfiType = <ProfileOrganization as FfiConverter<UT>>::FfiType

Source§

fn try_lift(v: Self::FfiType) -> Result<Self>

Source§

fn try_read(buf: &mut &[u8]) -> Result<Self>

§

fn try_lift_from_rust_buffer(v: RustBuffer) -> Result<Self, Error>

Convenience method
Source§

impl<UT> LiftRef<UT> for ProfileOrganization

Source§

impl<UT> LiftReturn<UT> for ProfileOrganization

Source§

type ReturnType = <ProfileOrganization as Lift<UT>>::FfiType

FFI return type for trait interfaces
Source§

fn try_lift_successful_return(v: Self::ReturnType) -> Result<Self>

Lift a successfully returned value from a trait interface
§

fn lift_foreign_return( ffi_return: Self::ReturnType, call_status: RustCallStatus, ) -> Self

Lift a foreign returned value from a trait interface Read more
§

fn lift_error(_buf: RustBuffer) -> Self

Lift a Rust value for a callback interface method error result Read more
§

fn handle_callback_unexpected_error(e: UnexpectedUniFFICallbackError) -> Self

Lift a Rust value for an unexpected callback interface error Read more
Source§

impl<UT> Lower<UT> for ProfileOrganization

Source§

type FfiType = <ProfileOrganization as FfiConverter<UT>>::FfiType

Source§

fn lower(obj: Self) -> Self::FfiType

Source§

fn write(obj: Self, buf: &mut Vec<u8>)

§

fn lower_into_rust_buffer(obj: Self) -> RustBuffer

Convenience method
Source§

impl<UT> LowerError<UT> for ProfileOrganization

Source§

fn lower_error(obj: Self) -> RustBuffer

Lower this value for scaffolding function return Read more
Source§

impl<UT> LowerReturn<UT> for ProfileOrganization

Source§

type ReturnType = <ProfileOrganization as Lower<UT>>::FfiType

The type that should be returned by scaffolding functions for this type. Read more
Source§

fn lower_return(v: Self) -> Result<Self::ReturnType, RustCallError>

Lower the return value from an scaffolding call Read more
§

fn handle_failed_lift( error: LiftArgsError, ) -> Result<Self::ReturnType, RustCallError>

Lower the return value for failed argument lifts Read more
Source§

impl Serialize for ProfileOrganization

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<UT> TypeId<UT> for ProfileOrganization

Source§

const TYPE_ID_META: MetadataBuffer

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Any for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

§

fn type_name(&self) -> &'static str

§

impl<T> AnySync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<T> CompatExt for T

§

fn compat(self) -> Compat<T>

Applies the [Compat] adapter by value. Read more
§

fn compat_ref(&self) -> Compat<&T>

Applies the [Compat] adapter by shared reference. Read more
§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the [Compat] adapter by mutable reference. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, UT> HandleAlloc<UT> for T
where T: Send + Sync,

§

fn new_handle(value: Arc<T>) -> Handle

Create a new handle for an Arc value Read more
§

unsafe fn clone_handle(handle: Handle) -> Handle

Clone a handle Read more
§

unsafe fn consume_handle(handle: Handle) -> Arc<T>

Consume a handle, getting back the initial Arc<> Read more
§

unsafe fn get_arc(handle: Handle) -> Arc<Self>

Get a clone of the Arc<> using a “borrowed” handle. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<S, T> Upcast<T> for S
where T: UpcastFrom<S> + ?Sized, S: ?Sized,

Source§

fn upcast(&self) -> &T
where Self: ErasableGeneric, T: ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider ref type within the Wasm bindgen generics type system. Read more
Source§

fn upcast_into(self) -> T
where Self: Sized + ErasableGeneric, T: ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider type within the Wasm bindgen generics type system. Read more
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,