pub struct SchemaCreateAction { /* private fields */ }
Expand description
Native implementation for the “create schema” action
Implementations§
Source§impl SchemaCreateAction
impl SchemaCreateAction
pub fn schema_name(&self) -> &str
pub fn owner(&self) -> &str
pub fn description(&self) -> &str
pub fn properties(&self) -> &[PropertyDefinition]
Trait Implementations§
Source§impl Clone for SchemaCreateAction
impl Clone for SchemaCreateAction
Source§fn clone(&self) -> SchemaCreateAction
fn clone(&self) -> SchemaCreateAction
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 SchemaCreateAction
impl Debug for SchemaCreateAction
Source§impl Default for SchemaCreateAction
impl Default for SchemaCreateAction
Source§fn default() -> SchemaCreateAction
fn default() -> SchemaCreateAction
Returns the “default value” for a type. Read more
Source§impl FromBytes<SchemaCreateAction> for SchemaCreateAction
impl FromBytes<SchemaCreateAction> for SchemaCreateAction
fn from_bytes(bytes: &[u8]) -> Result<SchemaCreateAction, ProtoConversionError>
Source§impl FromNative<SchemaCreateAction> for SchemaCreateAction
impl FromNative<SchemaCreateAction> for SchemaCreateAction
fn from_native( schema_create: SchemaCreateAction, ) -> Result<Self, ProtoConversionError>
Source§impl FromProto<SchemaCreateAction> for SchemaCreateAction
impl FromProto<SchemaCreateAction> for SchemaCreateAction
fn from_proto( schema_create: SchemaCreateAction, ) -> Result<Self, ProtoConversionError>
Source§impl IntoBytes for SchemaCreateAction
impl IntoBytes for SchemaCreateAction
fn into_bytes(self) -> Result<Vec<u8>, ProtoConversionError>
Source§impl IntoNative<SchemaCreateAction> for SchemaCreateAction
impl IntoNative<SchemaCreateAction> for SchemaCreateAction
fn into_native(self) -> Result<T, ProtoConversionError>
Source§impl IntoProto<SchemaCreateAction> for SchemaCreateAction
impl IntoProto<SchemaCreateAction> for SchemaCreateAction
fn into_proto(self) -> Result<T, ProtoConversionError>
Source§impl PartialEq for SchemaCreateAction
impl PartialEq for SchemaCreateAction
impl StructuralPartialEq for SchemaCreateAction
Auto Trait Implementations§
impl Freeze for SchemaCreateAction
impl RefUnwindSafe for SchemaCreateAction
impl Send for SchemaCreateAction
impl Sync for SchemaCreateAction
impl Unpin for SchemaCreateAction
impl UnwindSafe for SchemaCreateAction
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