pub struct Changes {
    pub client: Client,
}

Fields§

§client: Client

Implementations§

source§

impl Changes

source

pub async fn list( &self, page_token: &str, drive_id: &str, include_corpus_removals: bool, include_items_from_all_drives: bool, include_permissions_for_view: &str, include_removed: bool, include_team_drive_items: bool, page_size: i64, restrict_to_my_drive: bool, spaces: &str, supports_all_drives: bool, supports_team_drives: bool, team_drive_id: &str ) -> Result<Response<Vec<Change>>, ClientError>

This function performs a GET to the /changes endpoint.

Lists the changes for a user or shared drive.

Parameters:

  • page_token: &str – The token for continuing a previous list request on the next page. This should be set to the value of ‘nextPageToken’ from the previous response or to the response from the getStartPageToken method.
  • drive_id: &str – The shared drive from which changes are returned. If specified the change IDs will be reflective of the shared drive; use the combined drive ID and change ID as an identifier.
  • include_corpus_removals: bool – Whether changes should include the file resource if the file is still accessible by the user at the time of the request, even when a file was removed from the list of changes and there will be no further change entries for this file.
  • include_items_from_all_drives: bool – Whether both My Drive and shared drive items should be included in results.
  • include_permissions_for_view: &str – Specifies which additional view’s permissions to include in the response. Only ‘published’ is supported.
  • include_removed: bool – Whether to include changes indicating that items have been removed from the list of changes, for example by deletion or loss of access.
  • include_team_drive_items: bool – Whether the user has installed the requesting app.
  • page_size: i64 – A map of maximum import sizes by MIME type, in bytes.
  • restrict_to_my_drive: bool – Whether to restrict the results to changes inside the My Drive hierarchy. This omits changes to files such as those in the Application Data folder or shared files which have not been added to My Drive.
  • spaces: &str – A comma-separated list of spaces to query within the user corpus. Supported values are ‘drive’, ‘appDataFolder’ and ‘photos’.
  • supports_all_drives: bool – Whether the requesting application supports both My Drives and shared drives.
  • supports_team_drives: bool – Whether the user has installed the requesting app.
  • team_drive_id: &str – A link to this theme’s background image.
source

pub async fn list_all( &self, drive_id: &str, include_corpus_removals: bool, include_items_from_all_drives: bool, include_permissions_for_view: &str, include_removed: bool, include_team_drive_items: bool, restrict_to_my_drive: bool, spaces: &str, supports_all_drives: bool, supports_team_drives: bool, team_drive_id: &str ) -> Result<Response<Vec<Change>>, ClientError>

This function performs a GET to the /changes endpoint.

As opposed to list, this function returns all the pages of the request at once.

Lists the changes for a user or shared drive.

source

pub async fn get_start_page_token( &self, drive_id: &str, supports_all_drives: bool, supports_team_drives: bool, team_drive_id: &str ) -> Result<Response<StartPageToken>, ClientError>

This function performs a GET to the /changes/startPageToken endpoint.

Gets the starting pageToken for listing future changes.

Parameters:

  • drive_id: &str – The ID of the shared drive for which the starting pageToken for listing future changes from that shared drive is returned.
  • supports_all_drives: bool – Whether the requesting application supports both My Drives and shared drives.
  • supports_team_drives: bool – Whether the user has installed the requesting app.
  • team_drive_id: &str – A link to this theme’s background image.
source

pub async fn watch( &self, page_token: &str, drive_id: &str, include_corpus_removals: bool, include_items_from_all_drives: bool, include_permissions_for_view: &str, include_removed: bool, include_team_drive_items: bool, page_size: i64, restrict_to_my_drive: bool, spaces: &str, supports_all_drives: bool, supports_team_drives: bool, team_drive_id: &str, body: &Channel ) -> Result<Response<Channel>, ClientError>

This function performs a POST to the /changes/watch endpoint.

Subscribes to changes for a user.

Parameters:

  • page_token: &str – The token for continuing a previous list request on the next page. This should be set to the value of ‘nextPageToken’ from the previous response or to the response from the getStartPageToken method.
  • drive_id: &str – The shared drive from which changes are returned. If specified the change IDs will be reflective of the shared drive; use the combined drive ID and change ID as an identifier.
  • include_corpus_removals: bool – Whether changes should include the file resource if the file is still accessible by the user at the time of the request, even when a file was removed from the list of changes and there will be no further change entries for this file.
  • include_items_from_all_drives: bool – Whether both My Drive and shared drive items should be included in results.
  • include_permissions_for_view: &str – Specifies which additional view’s permissions to include in the response. Only ‘published’ is supported.
  • include_removed: bool – Whether to include changes indicating that items have been removed from the list of changes, for example by deletion or loss of access.
  • include_team_drive_items: bool – Whether the user has installed the requesting app.
  • page_size: i64 – A map of maximum import sizes by MIME type, in bytes.
  • restrict_to_my_drive: bool – Whether to restrict the results to changes inside the My Drive hierarchy. This omits changes to files such as those in the Application Data folder or shared files which have not been added to My Drive.
  • spaces: &str – A comma-separated list of spaces to query within the user corpus. Supported values are ‘drive’, ‘appDataFolder’ and ‘photos’.
  • supports_all_drives: bool – Whether the requesting application supports both My Drives and shared drives.
  • supports_team_drives: bool – Whether the user has installed the requesting app.
  • team_drive_id: &str – A link to this theme’s background image.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more