pub enum RemoteEntryRange {
Single(u32),
Range {
from: u32,
to: u32,
},
All,
}Expand description
Range selector for remote-entry-get.
Variants§
Trait Implementations§
Source§impl Clone for RemoteEntryRange
impl Clone for RemoteEntryRange
Source§fn clone(&self) -> RemoteEntryRange
fn clone(&self) -> RemoteEntryRange
Returns a duplicate of the value. Read more
1.0.0 · 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 RemoteEntryRange
impl Debug for RemoteEntryRange
Source§impl Display for RemoteEntryRange
impl Display for RemoteEntryRange
Source§impl PartialEq for RemoteEntryRange
impl PartialEq for RemoteEntryRange
impl Eq for RemoteEntryRange
impl StructuralPartialEq for RemoteEntryRange
Auto Trait Implementations§
impl Freeze for RemoteEntryRange
impl RefUnwindSafe for RemoteEntryRange
impl Send for RemoteEntryRange
impl Sync for RemoteEntryRange
impl Unpin for RemoteEntryRange
impl UnsafeUnpin for RemoteEntryRange
impl UnwindSafe for RemoteEntryRange
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