[−][src]Struct onedrive_api::query_option::CollectionOption
Option for the request to a collection of resource objects.
Methods
impl<Field: ResourceField> CollectionOption<Field>[src]
pub fn new() -> Self[src]
Create an empty (default) option.
pub fn select(self, fields: &[Field]) -> Self[src]
pub fn expand(self, field: Field, select_children: Option<&[&str]>) -> Self[src]
pub fn order_by(self, field: Field, order: Order) -> Self[src]
Specify the sort order of the items responsed.
Note
If called more than once, only the last call make sense.
See also
pub fn page_size(self, size: usize) -> Self[src]
Specify the number of items per page.
Note
If called more than once, only the last call make sense.
See also
pub fn get_count(self, get_count: bool) -> Self[src]
Trait Implementations
impl<Field: ResourceField> Default for CollectionOption<Field>[src]
impl<Field: Debug> Debug for CollectionOption<Field>[src]
Auto Trait Implementations
impl<Field> !Send for CollectionOption<Field>
impl<Field> !Sync for CollectionOption<Field>
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.