pub struct InstanceSettings;Implementations§
Source§impl InstanceSettings
impl InstanceSettings
Sourcepub async fn update_instance(
clerk_client: &Clerk,
update_instance_request: Option<UpdateInstanceRequest>,
) -> Result<(), Error<UpdateInstanceError>>
pub async fn update_instance( clerk_client: &Clerk, update_instance_request: Option<UpdateInstanceRequest>, ) -> Result<(), Error<UpdateInstanceError>>
Updates the settings of an instance
Sourcepub async fn update_instance_organization_settings(
clerk_client: &Clerk,
update_instance_organization_settings_request: Option<UpdateInstanceOrganizationSettingsRequest>,
) -> Result<OrganizationSettings, Error<UpdateInstanceOrganizationSettingsError>>
pub async fn update_instance_organization_settings( clerk_client: &Clerk, update_instance_organization_settings_request: Option<UpdateInstanceOrganizationSettingsRequest>, ) -> Result<OrganizationSettings, Error<UpdateInstanceOrganizationSettingsError>>
Updates the organization settings of the instance
Sourcepub async fn update_instance_restrictions(
clerk_client: &Clerk,
update_instance_restrictions_request: Option<UpdateInstanceRestrictionsRequest>,
) -> Result<InstanceRestrictions, Error<UpdateInstanceRestrictionsError>>
pub async fn update_instance_restrictions( clerk_client: &Clerk, update_instance_restrictions_request: Option<UpdateInstanceRestrictionsRequest>, ) -> Result<InstanceRestrictions, Error<UpdateInstanceRestrictionsError>>
Updates the restriction settings of an instance
Auto Trait Implementations§
impl Freeze for InstanceSettings
impl RefUnwindSafe for InstanceSettings
impl Send for InstanceSettings
impl Sync for InstanceSettings
impl Unpin for InstanceSettings
impl UnwindSafe for InstanceSettings
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