Struct google_drive::types::Change
source · pub struct Change {
pub change_type: String,
pub drive: Option<Drive>,
pub drive_id: String,
pub file: Option<File>,
pub file_id: String,
pub kind: String,
pub removed: Option<bool>,
pub team_drive: Option<TeamDrive>,
pub team_drive_id: String,
pub time: Option<DateTime<Utc>>,
pub type_: String,
}Expand description
A change to a file or shared drive.
Fields§
§change_type: StringA change to a file or shared drive.
drive: Option<Drive>A change to a file or shared drive.
drive_id: StringA change to a file or shared drive.
file: Option<File>A change to a file or shared drive.
file_id: StringA change to a file or shared drive.
kind: StringA change to a file or shared drive.
removed: Option<bool>A change to a file or shared drive.
team_drive: Option<TeamDrive>A change to a file or shared drive.
team_drive_id: StringA change to a file or shared drive.
time: Option<DateTime<Utc>>A change to a file or shared drive.
type_: StringA change to a file or shared drive.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Change
impl<'de> Deserialize<'de> for Change
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl JsonSchema for Change
impl JsonSchema for Change
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read more