pub struct Array0<T>(/* private fields */);
Expand description
An array of items with no specified length. The length is determined by buffer end.
Trait Implementations§
Source§impl<T: Deserialize> Deserialize for Array0<T>
impl<T: Deserialize> Deserialize for Array0<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 Array0<T>
Auto Trait Implementations§
impl<T> Freeze for Array0<T>
impl<T> RefUnwindSafe for Array0<T>where
T: RefUnwindSafe,
impl<T> Send for Array0<T>where
T: Send,
impl<T> Sync for Array0<T>where
T: Sync,
impl<T> Unpin for Array0<T>where
T: Unpin,
impl<T> UnwindSafe for Array0<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