pub struct IfaceId(_);
Expand description
Interface identifier.
Interface identifier commits to all of the interface data.
Trait Implementations§
source§impl<'de> Deserialize<'de> for IfaceId
impl<'de> Deserialize<'de> for IfaceId
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl FromBaid58<32> for IfaceId
impl FromBaid58<32> for IfaceId
source§fn from_baid58_str(s: &str) -> Result<Self, Baid58ParseError>
fn from_baid58_str(s: &str) -> Result<Self, Baid58ParseError>
Format of the string Read more
fn from_baid58(baid: Baid58<LEN>) -> Result<Self, Baid58HriError>
source§impl FromHex for IfaceId
impl FromHex for IfaceId
source§fn from_byte_iter<I>(iter: I) -> Result<Self, Error>where
I: Iterator<Item = Result<u8, Error>> + ExactSizeIterator + DoubleEndedIterator,
fn from_byte_iter<I>(iter: I) -> Result<Self, Error>where I: Iterator<Item = Result<u8, Error>> + ExactSizeIterator + DoubleEndedIterator,
Produce an object from a byte iterator
source§impl Ord for IfaceId
impl Ord for IfaceId
source§impl PartialEq<IfaceId> for IfaceId
impl PartialEq<IfaceId> for IfaceId
source§impl PartialOrd<IfaceId> for IfaceId
impl PartialOrd<IfaceId> for IfaceId
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl StrictDecode for IfaceId
impl StrictDecode for IfaceId
fn strict_decode(reader: &mut impl TypedRead) -> Result<Self, DecodeError>
fn strict_read(lim: usize, reader: impl Read) -> Result<Self, DecodeError>
source§impl StrictDumb for IfaceId
impl StrictDumb for IfaceId
fn strict_dumb() -> Self
source§impl StrictEncode for IfaceId
impl StrictEncode for IfaceId
fn strict_encode<W: TypedWrite>(&self, writer: W) -> Result<W>
fn strict_write(&self, lim: usize, writer: impl Write) -> Result<usize, Error>
source§impl StrictTuple for IfaceId
impl StrictTuple for IfaceId
const FIELD_COUNT: u8 = 1u8
fn strict_check_fields()
fn strict_type_info() -> TypeInfo<Self>
source§impl StrictType for IfaceId
impl StrictType for IfaceId
const STRICT_LIB_NAME: &'static str = LIB_NAME_RGB_STD
fn strict_name() -> Option<TypeName>
source§impl Wrapper for IfaceId
impl Wrapper for IfaceId
source§fn from_inner(inner: Self::Inner) -> Self
fn from_inner(inner: Self::Inner) -> Self
Instantiates wrapper type with the inner data
source§fn as_inner(&self) -> &Self::Inner
fn as_inner(&self) -> &Self::Inner
Returns reference to the inner representation for the wrapper type
source§fn into_inner(self) -> Self::Inner
fn into_inner(self) -> Self::Inner
Unwraps the wrapper returning the inner type
impl Copy for IfaceId
impl Eq for IfaceId
impl StrictProduct for IfaceId
impl StructuralEq for IfaceId
impl StructuralPartialEq for IfaceId
Auto Trait Implementations§
impl RefUnwindSafe for IfaceId
impl Send for IfaceId
impl Sync for IfaceId
impl Unpin for IfaceId
impl UnwindSafe for IfaceId
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.