pub struct RestrictionRange {
pub next_api: Option<Api>,
pub next_key: Option<RestrictedDirectory>,
pub restrictions: Vec<Restriction>,
}
Expand description
The response given from a range query
Fields§
§next_api: Option<Api>
A lower bound of the next page of results
next_key: Option<RestrictedDirectory>
§restrictions: Vec<Restriction>
The range of Restrictions
Trait Implementations§
Source§impl Debug for RestrictionRange
impl Debug for RestrictionRange
Source§impl<'de> Deserialize<'de> for RestrictionRange
impl<'de> Deserialize<'de> for RestrictionRange
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RestrictionRange
impl PartialEq for RestrictionRange
Source§impl Serialize for RestrictionRange
impl Serialize for RestrictionRange
impl Eq for RestrictionRange
impl StructuralPartialEq for RestrictionRange
Auto Trait Implementations§
impl Freeze for RestrictionRange
impl RefUnwindSafe for RestrictionRange
impl Send for RestrictionRange
impl Sync for RestrictionRange
impl Unpin for RestrictionRange
impl UnwindSafe for RestrictionRange
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.