pub struct Revision {Show 14 fields
pub export_links: Option<HashMap<String, String>>,
pub id: Option<String>,
pub keep_forever: Option<bool>,
pub kind: Option<String>,
pub last_modifying_user: Option<User>,
pub md5_checksum: Option<String>,
pub mime_type: Option<String>,
pub modified_time: Option<DateTime<Utc>>,
pub original_filename: Option<String>,
pub publish_auto: Option<bool>,
pub published: Option<bool>,
pub published_link: Option<String>,
pub published_outside_domain: Option<bool>,
pub size: Option<i64>,
}
Expand description
The metadata for a revision to a file. Some resource methods (such as revisions.update
) require a revisionId
. Use the revisions.list
method to retrieve the ID for a revision.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- delete revisions (none)
- get revisions (response)
- list revisions (none)
- update revisions (request|response)
Fields§
§export_links: Option<HashMap<String, String>>
Output only. Links for exporting Docs Editors files to specific formats.
id: Option<String>
Output only. The ID of the revision.
keep_forever: Option<bool>
Whether to keep this revision forever, even if it is no longer the head revision. If not set, the revision will be automatically purged 30 days after newer content is uploaded. This can be set on a maximum of 200 revisions for a file. This field is only applicable to files with binary content in Drive.
kind: Option<String>
Output only. Identifies what kind of resource this is. Value: the fixed string "drive#revision"
.
last_modifying_user: Option<User>
Output only. The last user to modify this revision.
md5_checksum: Option<String>
Output only. The MD5 checksum of the revision’s content. This is only applicable to files with binary content in Drive.
mime_type: Option<String>
Output only. The MIME type of the revision.
modified_time: Option<DateTime<Utc>>
The last time the revision was modified (RFC 3339 date-time).
original_filename: Option<String>
Output only. The original filename used to create this revision. This is only applicable to files with binary content in Drive.
publish_auto: Option<bool>
Whether subsequent revisions will be automatically republished. This is only applicable to Docs Editors files.
published: Option<bool>
Whether this revision is published. This is only applicable to Docs Editors files.
published_link: Option<String>
Output only. A link to the published revision. This is only populated for Google Sites files.
published_outside_domain: Option<bool>
Whether this revision is published outside the domain. This is only applicable to Docs Editors files.
size: Option<i64>
Output only. The size of the revision’s content in bytes. This is only applicable to files with binary content in Drive.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Revision
impl<'de> Deserialize<'de> for Revision
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>,
impl RequestValue for Revision
impl Resource for Revision
impl ResponseResult for Revision
Auto Trait Implementations§
impl Freeze for Revision
impl RefUnwindSafe for Revision
impl Send for Revision
impl Sync for Revision
impl Unpin for Revision
impl UnwindSafe for Revision
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more