pub struct RemoteNamedRootPage {
pub roots: Vec<RemoteNamedRoot>,
pub next_after: Option<Vec<u8>>,
}Expand description
One bounded backend page of serialized named roots in raw-name order.
Fields§
§roots: Vec<RemoteNamedRoot>Serialized roots in ascending raw-name order.
next_after: Option<Vec<u8>>Last emitted raw name when another matching root exists.
Trait Implementations§
Source§impl Clone for RemoteNamedRootPage
impl Clone for RemoteNamedRootPage
Source§fn clone(&self) -> RemoteNamedRootPage
fn clone(&self) -> RemoteNamedRootPage
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 RemoteNamedRootPage
impl Debug for RemoteNamedRootPage
Source§impl Default for RemoteNamedRootPage
impl Default for RemoteNamedRootPage
Source§fn default() -> RemoteNamedRootPage
fn default() -> RemoteNamedRootPage
Returns the “default value” for a type. Read more
impl Eq for RemoteNamedRootPage
Source§impl PartialEq for RemoteNamedRootPage
impl PartialEq for RemoteNamedRootPage
impl StructuralPartialEq for RemoteNamedRootPage
Auto Trait Implementations§
impl Freeze for RemoteNamedRootPage
impl RefUnwindSafe for RemoteNamedRootPage
impl Send for RemoteNamedRootPage
impl Sync for RemoteNamedRootPage
impl Unpin for RemoteNamedRootPage
impl UnsafeUnpin for RemoteNamedRootPage
impl UnwindSafe for RemoteNamedRootPage
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