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