pub struct StartSchemaExtensionRequest {
pub create_snapshot_before_schema_extension: bool,
pub description: String,
pub directory_id: String,
pub ldif_content: String,
}
Fields§
§create_snapshot_before_schema_extension: bool
If true, creates a snapshot of the directory before applying the schema extension.
description: String
A description of the schema extension.
directory_id: String
The identifier of the directory for which the schema extension will be applied to.
ldif_content: String
The LDIF file represented as a string. To construct the LdifContent string, precede each line as it would be formatted in an ldif file with \n. See the example request below for more details. The file size can be no larger than 1MB.
Trait Implementations§
Source§impl Clone for StartSchemaExtensionRequest
impl Clone for StartSchemaExtensionRequest
Source§fn clone(&self) -> StartSchemaExtensionRequest
fn clone(&self) -> StartSchemaExtensionRequest
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 StartSchemaExtensionRequest
impl Debug for StartSchemaExtensionRequest
Source§impl Default for StartSchemaExtensionRequest
impl Default for StartSchemaExtensionRequest
Source§fn default() -> StartSchemaExtensionRequest
fn default() -> StartSchemaExtensionRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for StartSchemaExtensionRequest
Auto Trait Implementations§
impl Freeze for StartSchemaExtensionRequest
impl RefUnwindSafe for StartSchemaExtensionRequest
impl Send for StartSchemaExtensionRequest
impl Sync for StartSchemaExtensionRequest
impl Unpin for StartSchemaExtensionRequest
impl UnwindSafe for StartSchemaExtensionRequest
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