pub struct MapVersionPage {
pub versions: Vec<MapVersion>,
pub next_cursor: Option<MapVersionCursor>,
}Expand description
One bounded page of immutable versions in stable version-ID byte order.
Fields§
§versions: Vec<MapVersion>Cataloged immutable versions.
next_cursor: Option<MapVersionCursor>Cursor for the next page, or None when enumeration is complete.
Trait Implementations§
Source§impl Clone for MapVersionPage
impl Clone for MapVersionPage
Source§fn clone(&self) -> MapVersionPage
fn clone(&self) -> MapVersionPage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MapVersionPage
impl Debug for MapVersionPage
Source§impl Default for MapVersionPage
impl Default for MapVersionPage
Source§fn default() -> MapVersionPage
fn default() -> MapVersionPage
Returns the “default value” for a type. Read more
Source§impl PartialEq for MapVersionPage
impl PartialEq for MapVersionPage
impl StructuralPartialEq for MapVersionPage
Auto Trait Implementations§
impl Freeze for MapVersionPage
impl RefUnwindSafe for MapVersionPage
impl Send for MapVersionPage
impl Sync for MapVersionPage
impl Unpin for MapVersionPage
impl UnsafeUnpin for MapVersionPage
impl UnwindSafe for MapVersionPage
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more