pub struct Vector<'buf, T: ?Sized> { /* private fields */ }
Expand description
A Vec
like view into a serialized buffer that deserializes on demand.
Checks if the vector is empty.
Returns the number of elements in the vector.
Returns the element at the given index, or None if out of bounds.
Returns an iterator over the vector.
Copies self into a new Vec
.
Copies self into a new Vec
.
Performs copy-assignment from
source
.
Read more
Formats the value using the given formatter.
Read more
The type of the elements being iterated over.
Which kind of iterator are we turning this into?
The type returned in the event of a conversion error.
Performs the conversion.
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self)
.
That is, this conversion is whatever the implementation of
From<T> for U
chooses to do.
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning.
Read more
Uses borrowed data to replace owned data, usually by cloning.
Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.