Struct graph_rs_sdk::default_drive::DefaultDriveApiClient
source · pub struct DefaultDriveApiClient { /* private fields */ }
Implementations§
source§impl DefaultDriveApiClient
impl DefaultDriveApiClient
sourcepub fn get_drive(&self) -> RequestHandler
pub fn get_drive(&self) -> RequestHandler
sourcepub fn update_drive<B: BodyExt>(&self, body: B) -> RequestHandler
pub fn update_drive<B: BodyExt>(&self, body: B) -> RequestHandler
sourcepub fn list_bundles(&self) -> RequestHandler
pub fn list_bundles(&self) -> RequestHandler
Get bundles from drives
sourcepub fn get_bundles_count(&self) -> RequestHandler
pub fn get_bundles_count(&self) -> RequestHandler
Get the number of the resource
sourcepub fn get_bundles(&self, drive_item_id: impl AsRef<str>) -> RequestHandler
pub fn get_bundles(&self, drive_item_id: impl AsRef<str>) -> RequestHandler
Get bundles from drives
sourcepub fn get_bundles_content(
&self,
drive_item_id: impl AsRef<str>
) -> RequestHandler
pub fn get_bundles_content( &self, drive_item_id: impl AsRef<str> ) -> RequestHandler
Get content for the navigation property bundles from drives
sourcepub fn update_bundles_content<B: BodyExt>(
&self,
drive_item_id: impl AsRef<str>,
body: B
) -> RequestHandler
pub fn update_bundles_content<B: BodyExt>( &self, drive_item_id: impl AsRef<str>, body: B ) -> RequestHandler
Update content for the navigation property bundles in drives
sourcepub fn list_following(&self) -> RequestHandler
pub fn list_following(&self) -> RequestHandler
sourcepub fn create_following<B: BodyExt>(&self, body: B) -> RequestHandler
pub fn create_following<B: BodyExt>(&self, body: B) -> RequestHandler
sourcepub fn get_following_count(&self) -> RequestHandler
pub fn get_following_count(&self) -> RequestHandler
Get the number of the resource
sourcepub fn get_following(&self, drive_item_id: impl AsRef<str>) -> RequestHandler
pub fn get_following(&self, drive_item_id: impl AsRef<str>) -> RequestHandler
Get following from drive
sourcepub fn get_following_content(
&self,
drive_item_id: impl AsRef<str>
) -> RequestHandler
pub fn get_following_content( &self, drive_item_id: impl AsRef<str> ) -> RequestHandler
Get content for the navigation property following from drive
sourcepub fn update_following_content<B: BodyExt>(
&self,
drive_item_id: impl AsRef<str>,
body: B
) -> RequestHandler
pub fn update_following_content<B: BodyExt>( &self, drive_item_id: impl AsRef<str>, body: B ) -> RequestHandler
Update content for the navigation property following in drive
pub fn list_root_children(&self) -> RequestHandler
pub fn list_root_activities(&self) -> RequestHandler
sourcepub fn get_list<B: BodyExt>(&self, body: B) -> RequestHandler
pub fn get_list<B: BodyExt>(&self, body: B) -> RequestHandler
sourcepub fn update_list<B: BodyExt>(&self, body: B) -> RequestHandler
pub fn update_list<B: BodyExt>(&self, body: B) -> RequestHandler
sourcepub fn recent(&self) -> RequestHandler
pub fn recent(&self) -> RequestHandler
sourcepub fn get_root(&self) -> RequestHandler
pub fn get_root(&self) -> RequestHandler
sourcepub fn list_special(&self) -> RequestHandler
pub fn list_special(&self) -> RequestHandler
sourcepub fn create_special<B: BodyExt>(&self, body: B) -> RequestHandler
pub fn create_special<B: BodyExt>(&self, body: B) -> RequestHandler
sourcepub fn get_special(&self, drive_item_id: impl AsRef<str>) -> RequestHandler
pub fn get_special(&self, drive_item_id: impl AsRef<str>) -> RequestHandler
sourcepub fn update_special<B: BodyExt>(
&self,
drive_item_id: impl AsRef<str>,
body: B
) -> RequestHandler
pub fn update_special<B: BodyExt>( &self, drive_item_id: impl AsRef<str>, body: B ) -> RequestHandler
sourcepub fn get_special_content(
&self,
drive_item_id: impl AsRef<str>
) -> RequestHandler
pub fn get_special_content( &self, drive_item_id: impl AsRef<str> ) -> RequestHandler
Get content for the navigation property special from drive
sourcepub fn update_special_content<B: BodyExt>(
&self,
drive_item_id: impl AsRef<str>,
body: B
) -> RequestHandler
pub fn update_special_content<B: BodyExt>( &self, drive_item_id: impl AsRef<str>, body: B ) -> RequestHandler
Update content for the navigation property special in drive
pub fn root_delta(&self) -> RequestHandler
sourcepub fn search(&self, q: impl AsRef<str>) -> RequestHandler
pub fn search(&self, q: impl AsRef<str>) -> RequestHandler
Invoke function search
sourcepub fn get_root_content(&self) -> RequestHandler
pub fn get_root_content(&self) -> RequestHandler
Get content for the navigation property root from drives
sourcepub fn update_root_content<B: BodyExt>(&self, body: B) -> RequestHandler
pub fn update_root_content<B: BodyExt>(&self, body: B) -> RequestHandler
Update content for the navigation property root in drives
sourcepub fn create_root_folder<B: BodyExt>(&self, body: B) -> RequestHandler
pub fn create_root_folder<B: BodyExt>(&self, body: B) -> RequestHandler
Create drive item in root of drive
pub fn items(&self) -> DrivesItemsApiClient
pub fn item<ID: AsRef<str>>(&self, id: ID) -> DrivesItemsIdApiClient
pub fn item_by_path<ID: AsRef<str>>( &self, id: ID ) -> DefaultDrivesItemsPathIdApiClient
pub fn lists(&self) -> DrivesListApiClient
Trait Implementations§
source§impl Debug for DefaultDriveApiClient
impl Debug for DefaultDriveApiClient
source§impl ODataQuery<DefaultDriveApiClient> for DefaultDriveApiClient
impl ODataQuery<DefaultDriveApiClient> for DefaultDriveApiClient
fn append_query_pair<KV: AsRef<str>>(self, key: KV, value: KV) -> Self
source§fn count<S>(self, value: S) -> Selfwhere
S: AsRef<str>,
fn count<S>(self, value: S) -> Selfwhere S: AsRef<str>,
Retrieves the total count of matching resources.
See the docs
source§fn select(self, value: &[&str]) -> Self
fn select(self, value: &[&str]) -> Self
Filters properties (columns).
See the docs
source§fn expand(self, value: &[&str]) -> Self
fn expand(self, value: &[&str]) -> Self
Retrieves related resources.
See the docs
source§fn filter(self, value: &[&str]) -> Self
fn filter(self, value: &[&str]) -> Self
Filters results (rows).
See the docs
source§fn order_by(self, value: &[&str]) -> Self
fn order_by(self, value: &[&str]) -> Self
Orders results.
See the docs
source§fn search<S>(self, value: S) -> Selfwhere
S: AsRef<str>,
fn search<S>(self, value: S) -> Selfwhere S: AsRef<str>,
Returns results based on search criteria.
See the docs
source§fn format<S>(self, value: S) -> Selfwhere
S: AsRef<str>,
fn format<S>(self, value: S) -> Selfwhere S: AsRef<str>,
Returns the results in the specified media format.
See the docs
source§fn skip<S>(self, value: S) -> Selfwhere
S: AsRef<str>,
fn skip<S>(self, value: S) -> Selfwhere S: AsRef<str>,
Indexes into a result set. Also used by some APIs to implement paging and can be used
together with $top to manually page results.
See the docs
source§fn skip_token<S>(self, value: S) -> Selfwhere
S: AsRef<str>,
fn skip_token<S>(self, value: S) -> Selfwhere S: AsRef<str>,
Retrieves the next page of results from result sets that span multiple pages.
(Some APIs use $skip instead.)
See the docs
source§fn delta_token<S>(self, value: S) -> Selfwhere
S: AsRef<str>,
fn delta_token<S>(self, value: S) -> Selfwhere S: AsRef<str>,
Retrieves the next page of results from result sets that span multiple pages.
(Some APIs use $skip instead.)
See the docs