pub struct ListSchemaExtensionsResult {
pub next_token: Option<String>,
pub schema_extensions_info: Option<Vec<SchemaExtensionInfo>>,
}
Fields§
§next_token: Option<String>
If not null, more results are available. Pass this value for the NextToken
parameter in a subsequent call to ListSchemaExtensions
to retrieve the next set of items.
schema_extensions_info: Option<Vec<SchemaExtensionInfo>>
Information about the schema extensions applied to the directory.
Trait Implementations§
Source§impl Clone for ListSchemaExtensionsResult
impl Clone for ListSchemaExtensionsResult
Source§fn clone(&self) -> ListSchemaExtensionsResult
fn clone(&self) -> ListSchemaExtensionsResult
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 ListSchemaExtensionsResult
impl Debug for ListSchemaExtensionsResult
Source§impl Default for ListSchemaExtensionsResult
impl Default for ListSchemaExtensionsResult
Source§fn default() -> ListSchemaExtensionsResult
fn default() -> ListSchemaExtensionsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListSchemaExtensionsResult
impl<'de> Deserialize<'de> for ListSchemaExtensionsResult
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>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ListSchemaExtensionsResult
Auto Trait Implementations§
impl Freeze for ListSchemaExtensionsResult
impl RefUnwindSafe for ListSchemaExtensionsResult
impl Send for ListSchemaExtensionsResult
impl Sync for ListSchemaExtensionsResult
impl Unpin for ListSchemaExtensionsResult
impl UnwindSafe for ListSchemaExtensionsResult
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