pub struct OnenotePagesIdApiClient { /* private fields */ }
Implementations§
Source§impl OnenotePagesIdApiClient
impl OnenotePagesIdApiClient
Sourcepub fn delete_pages(&self) -> RequestHandler
pub fn delete_pages(&self) -> RequestHandler
Delete navigation property pages for users
Sourcepub fn get_pages(&self) -> RequestHandler
pub fn get_pages(&self) -> RequestHandler
Get pages from users
Sourcepub fn update_pages<B: BodyExt>(&self, body: B) -> RequestHandler
pub fn update_pages<B: BodyExt>(&self, body: B) -> RequestHandler
Update the navigation property pages in users
Sourcepub fn get_pages_content(&self) -> RequestHandler
pub fn get_pages_content(&self) -> RequestHandler
Get content for the navigation property pages from users
Sourcepub fn update_pages_content<B: BodyExt>(&self, body: B) -> RequestHandler
pub fn update_pages_content<B: BodyExt>(&self, body: B) -> RequestHandler
Update content for the navigation property pages in users
Sourcepub fn copy_to_section<B: BodyExt>(&self, body: B) -> RequestHandler
pub fn copy_to_section<B: BodyExt>(&self, body: B) -> RequestHandler
Invoke action copyToSection
Sourcepub fn onenote_patch_content<B: BodyExt>(&self, body: B) -> RequestHandler
pub fn onenote_patch_content<B: BodyExt>(&self, body: B) -> RequestHandler
Invoke action onenotePatchContent
Sourcepub fn get_parent_notebook(&self) -> RequestHandler
pub fn get_parent_notebook(&self) -> RequestHandler
Get parentNotebook from users
Sourcepub fn get_parent_section(&self) -> RequestHandler
pub fn get_parent_section(&self) -> RequestHandler
Get parentSection from users
Sourcepub fn preview(&self) -> RequestHandler
pub fn preview(&self) -> RequestHandler
Invoke function preview
Trait Implementations§
Source§impl Debug for OnenotePagesIdApiClient
impl Debug for OnenotePagesIdApiClient
Source§impl ODataQuery for OnenotePagesIdApiClient
impl ODataQuery for OnenotePagesIdApiClient
fn append_query_pair<KV: AsRef<str>>(self, key: KV, value: KV) -> Self
Source§fn count<S>(self, value: S) -> Self
fn count<S>(self, value: S) -> Self
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) -> Self
fn search<S>(self, value: S) -> Self
Returns results based on search criteria.
See the docs
Source§fn format<S>(self, value: S) -> Self
fn format<S>(self, value: S) -> Self
Returns the results in the specified media format.
See the docs
Source§fn skip<S>(self, value: S) -> Self
fn skip<S>(self, value: S) -> Self
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) -> Self
fn skip_token<S>(self, value: S) -> Self
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) -> Self
fn delta_token<S>(self, value: S) -> Self
Retrieves the next page of results from result sets that span multiple pages.
(Some APIs use $skip instead.)
See the docs
Auto Trait Implementations§
impl !Freeze for OnenotePagesIdApiClient
impl !RefUnwindSafe for OnenotePagesIdApiClient
impl Send for OnenotePagesIdApiClient
impl Sync for OnenotePagesIdApiClient
impl Unpin for OnenotePagesIdApiClient
impl !UnwindSafe for OnenotePagesIdApiClient
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