pub struct OperationIdentificationId(/* private fields */);Expand description
Represents the specific call instance for a particular callback operation.
Implementations§
Source§impl OperationIdentificationId
impl OperationIdentificationId
Sourcepub const fn new() -> OperationIdentificationId
pub const fn new() -> OperationIdentificationId
Creates a new OperationIdentificationId.
Sourcepub const fn create(val: u32) -> OperationIdentificationId
pub const fn create(val: u32) -> OperationIdentificationId
Creates a new OperationIdentificationId from the provided parameter.
Sourcepub fn set_inner(&mut self, val: u32)
pub fn set_inner(&mut self, val: u32)
Sets the inner representation of OperationIdentificationId.
Sourcepub fn into_inner(self) -> u32
pub fn into_inner(self) -> u32
Converts into the inner representation of OperationIdentificationId.
Trait Implementations§
Source§impl Clone for OperationIdentificationId
impl Clone for OperationIdentificationId
Source§fn clone(&self) -> OperationIdentificationId
fn clone(&self) -> OperationIdentificationId
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 OperationIdentificationId
impl Debug for OperationIdentificationId
Source§impl Default for OperationIdentificationId
impl Default for OperationIdentificationId
Source§fn default() -> OperationIdentificationId
fn default() -> OperationIdentificationId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OperationIdentificationId
impl<'de> Deserialize<'de> for OperationIdentificationId
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OperationIdentificationId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OperationIdentificationId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for OperationIdentificationId
impl Display for OperationIdentificationId
Source§impl From<&OperationIdentificationId> for XfsMember
impl From<&OperationIdentificationId> for XfsMember
Source§fn from(val: &OperationIdentificationId) -> XfsMember
fn from(val: &OperationIdentificationId) -> XfsMember
Converts to this type from the input type.
Source§impl From<&OperationIdentificationId> for XfsValue
impl From<&OperationIdentificationId> for XfsValue
Source§fn from(val: &OperationIdentificationId) -> XfsValue
fn from(val: &OperationIdentificationId) -> XfsValue
Converts to this type from the input type.
Source§impl From<&i32> for OperationIdentificationId
impl From<&i32> for OperationIdentificationId
Source§fn from(val: &i32) -> OperationIdentificationId
fn from(val: &i32) -> OperationIdentificationId
Converts to this type from the input type.
Source§impl From<&u32> for OperationIdentificationId
impl From<&u32> for OperationIdentificationId
Source§fn from(val: &u32) -> OperationIdentificationId
fn from(val: &u32) -> OperationIdentificationId
Converts to this type from the input type.
Source§impl From<OperationIdentificationId> for XfsMember
impl From<OperationIdentificationId> for XfsMember
Source§fn from(val: OperationIdentificationId) -> XfsMember
fn from(val: OperationIdentificationId) -> XfsMember
Converts to this type from the input type.
Source§impl From<OperationIdentificationId> for XfsValue
impl From<OperationIdentificationId> for XfsValue
Source§fn from(val: OperationIdentificationId) -> XfsValue
fn from(val: OperationIdentificationId) -> XfsValue
Converts to this type from the input type.
Source§impl From<i32> for OperationIdentificationId
impl From<i32> for OperationIdentificationId
Source§fn from(val: i32) -> OperationIdentificationId
fn from(val: i32) -> OperationIdentificationId
Converts to this type from the input type.
Source§impl From<u32> for OperationIdentificationId
impl From<u32> for OperationIdentificationId
Source§fn from(val: u32) -> OperationIdentificationId
fn from(val: u32) -> OperationIdentificationId
Converts to this type from the input type.
Source§impl Serialize for OperationIdentificationId
impl Serialize for OperationIdentificationId
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<&XfsMember> for OperationIdentificationId
impl TryFrom<&XfsMember> for OperationIdentificationId
Source§impl TryFrom<&XfsValue> for OperationIdentificationId
impl TryFrom<&XfsValue> for OperationIdentificationId
Source§impl TryFrom<XfsMember> for OperationIdentificationId
impl TryFrom<XfsMember> for OperationIdentificationId
Source§impl TryFrom<XfsValue> for OperationIdentificationId
impl TryFrom<XfsValue> for OperationIdentificationId
impl Copy for OperationIdentificationId
impl Eq for OperationIdentificationId
impl StructuralPartialEq for OperationIdentificationId
Auto Trait Implementations§
impl Freeze for OperationIdentificationId
impl RefUnwindSafe for OperationIdentificationId
impl Send for OperationIdentificationId
impl Sync for OperationIdentificationId
impl Unpin for OperationIdentificationId
impl UnwindSafe for OperationIdentificationId
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