Struct onedrive_api::ExpectRange
source · pub struct ExpectRange {
pub start: u64,
pub end: Option<u64>,
}Expand description
A half-open byte range start..end or start...
Fields§
§start: u64The lower bound of the range (inclusive).
end: Option<u64>The optional upper bound of the range (exclusive).
Trait Implementations§
source§impl Clone for ExpectRange
impl Clone for ExpectRange
source§fn clone(&self) -> ExpectRange
fn clone(&self) -> ExpectRange
Returns a copy 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 ExpectRange
impl Debug for ExpectRange
source§impl<'de> Deserialize<'de> for ExpectRange
impl<'de> Deserialize<'de> for ExpectRange
source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for ExpectRange
impl PartialEq for ExpectRange
source§fn eq(&self, other: &ExpectRange) -> bool
fn eq(&self, other: &ExpectRange) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for ExpectRange
impl Eq for ExpectRange
impl StructuralPartialEq for ExpectRange
Auto Trait Implementations§
impl Freeze for ExpectRange
impl RefUnwindSafe for ExpectRange
impl Send for ExpectRange
impl Sync for ExpectRange
impl Unpin for ExpectRange
impl UnwindSafe for ExpectRange
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.