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