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