pub enum ContractName {
Unnamed,
Named(TypeName),
}
Expand description
Contract name.
Variants§
Trait Implementations§
Source§impl Clone for ContractName
impl Clone for ContractName
Source§fn clone(&self) -> ContractName
fn clone(&self) -> ContractName
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 ContractName
impl Debug for ContractName
Source§impl<'de> Deserialize<'de> for ContractName
impl<'de> Deserialize<'de> for ContractName
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ContractName, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ContractName, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ContractName
impl Display for ContractName
Source§impl Hash for ContractName
impl Hash for ContractName
Source§impl Ord for ContractName
impl Ord for ContractName
Source§fn cmp(&self, other: &ContractName) -> Ordering
fn cmp(&self, other: &ContractName) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ContractName
impl PartialEq for ContractName
Source§impl PartialOrd for ContractName
impl PartialOrd for ContractName
Source§impl Serialize for ContractName
impl Serialize for ContractName
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 StrictDecode for ContractName
impl StrictDecode for ContractName
fn strict_decode( reader: &mut impl TypedRead, ) -> Result<ContractName, DecodeError>
fn strict_read(reader: impl ReadRaw) -> Result<Self, DecodeError>
Source§impl StrictDumb for ContractName
impl StrictDumb for ContractName
fn strict_dumb() -> ContractName
Source§impl StrictEncode for ContractName
impl StrictEncode for ContractName
fn strict_encode<W>(&self, writer: W) -> Result<W, Error>where
W: TypedWrite,
fn strict_write(&self, writer: impl WriteRaw) -> Result<(), Error>
Source§impl StrictSum for ContractName
impl StrictSum for ContractName
const ALL_VARIANTS: &'static [(u8, &'static str)]
fn variant_name(&self) -> &'static str
fn strict_check_variants()
fn variant_name_by_tag(tag: u8) -> Option<VariantName>
fn variant_ord(&self) -> u8
Source§impl StrictType for ContractName
impl StrictType for ContractName
const STRICT_LIB_NAME: &'static str = LIB_NAME_ULTRASONIC
fn strict_name() -> Option<TypeName>
Source§impl StrictUnion for ContractName
impl StrictUnion for ContractName
fn strict_type_info() -> TypeInfo<Self>
impl Eq for ContractName
impl StructuralPartialEq for ContractName
Auto Trait Implementations§
impl Freeze for ContractName
impl RefUnwindSafe for ContractName
impl Send for ContractName
impl Sync for ContractName
impl Unpin for ContractName
impl UnwindSafe for ContractName
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.