pub struct Array32<T>(/* private fields */);
Expand description
An array of items with a u32 length prefix
Trait Implementations§
Source§impl<T: Deserialize> Deserialize for Array32<T>
impl<T: Deserialize> Deserialize for Array32<T>
Source§type Output = Vec<<T as Deserialize>::Output>
type Output = Vec<<T as Deserialize>::Output>
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self::Output>
impl<T> StructuralPartialEq for Array32<T>
Auto Trait Implementations§
impl<T> Freeze for Array32<T>
impl<T> RefUnwindSafe for Array32<T>where
T: RefUnwindSafe,
impl<T> Send for Array32<T>where
T: Send,
impl<T> Sync for Array32<T>where
T: Sync,
impl<T> Unpin for Array32<T>where
T: Unpin,
impl<T> UnwindSafe for Array32<T>where
T: UnwindSafe,
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