[−][src]Struct scale_info::PortableRegistry
A read-only registry containing types in their portable form for serialization.
Implementations
impl<S> PortableRegistry<S> where
S: FormString,
[src]
S: FormString,
pub fn resolve(&self, id: NonZeroU32) -> Option<&Type<PortableForm<S>>>
[src]
Returns the type definition for the given identifier, None
if no type found for that ID.
pub fn enumerate(
&self
) -> impl Iterator<Item = (NonZeroU32, &Type<PortableForm<S>>)>
[src]
&self
) -> impl Iterator<Item = (NonZeroU32, &Type<PortableForm<S>>)>
Returns an iterator for all types paired with their associated NonZeroU32 identifier.
Trait Implementations
impl<S: Clone> Clone for PortableRegistry<S> where
S: FormString,
[src]
S: FormString,
fn clone(&self) -> PortableRegistry<S>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<S: Debug> Debug for PortableRegistry<S> where
S: FormString,
[src]
S: FormString,
impl<S> Decode for PortableRegistry<S> where
S: FormString,
Vec<Type<PortableForm<S>>>: Decode,
Vec<Type<PortableForm<S>>>: Decode,
[src]
S: FormString,
Vec<Type<PortableForm<S>>>: Decode,
Vec<Type<PortableForm<S>>>: Decode,
fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
[src]
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
pub fn skip<I>(input: &mut I) -> Result<(), Error> where
I: Input,
[src]
I: Input,
pub fn encoded_fixed_size() -> Option<usize>
[src]
impl<S> Encode for PortableRegistry<S> where
S: FormString,
Vec<Type<PortableForm<S>>>: Encode,
Vec<Type<PortableForm<S>>>: Encode,
[src]
S: FormString,
Vec<Type<PortableForm<S>>>: Encode,
Vec<Type<PortableForm<S>>>: Encode,
fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
[src]
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
fn encode(&self) -> Vec<u8>ⓘ
[src]
fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R
[src]
pub fn size_hint(&self) -> usize
[src]
pub fn encoded_size(&self) -> usize
[src]
impl<S> EncodeLike<PortableRegistry<S>> for PortableRegistry<S> where
S: FormString,
Vec<Type<PortableForm<S>>>: Encode,
Vec<Type<PortableForm<S>>>: Encode,
[src]
S: FormString,
Vec<Type<PortableForm<S>>>: Encode,
Vec<Type<PortableForm<S>>>: Encode,
impl<S: Eq> Eq for PortableRegistry<S> where
S: FormString,
[src]
S: FormString,
impl From<Registry> for PortableRegistry
[src]
impl<S: PartialEq> PartialEq<PortableRegistry<S>> for PortableRegistry<S> where
S: FormString,
[src]
S: FormString,
fn eq(&self, other: &PortableRegistry<S>) -> bool
[src]
fn ne(&self, other: &PortableRegistry<S>) -> bool
[src]
impl<S> StructuralEq for PortableRegistry<S> where
S: FormString,
[src]
S: FormString,
impl<S> StructuralPartialEq for PortableRegistry<S> where
S: FormString,
[src]
S: FormString,
Auto Trait Implementations
impl<S> RefUnwindSafe for PortableRegistry<S> where
S: RefUnwindSafe,
[src]
S: RefUnwindSafe,
impl<S> Send for PortableRegistry<S> where
S: Send,
[src]
S: Send,
impl<S> Sync for PortableRegistry<S> where
S: Sync,
[src]
S: Sync,
impl<S> Unpin for PortableRegistry<S> where
S: Unpin,
[src]
S: Unpin,
impl<S> UnwindSafe for PortableRegistry<S> where
S: UnwindSafe,
[src]
S: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<S> Codec for S where
S: Encode + Decode,
[src]
S: Encode + Decode,
impl<T> DecodeAll for T where
T: Decode,
[src]
T: Decode,
impl<T> DecodeLimit for T where
T: Decode,
[src]
T: Decode,
pub fn decode_all_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>
[src]
pub fn decode_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>
[src]
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Arc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Box<T, Global>> for T where
T: Encode,
[src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: Encode + ToOwned,
[src]
T: Encode + ToOwned,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<T> From<T> for T
[src]
impl<S> FullCodec for S where
S: Decode + FullEncode,
[src]
S: Decode + FullEncode,
impl<S> FullEncode for S where
S: Encode + EncodeLike<S>,
[src]
S: Encode + EncodeLike<S>,
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> KeyedVec for T where
T: Codec,
[src]
T: Codec,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,