pub struct ManagedFolder {
pub bucket: Option<String>,
pub create_time: Option<DateTime<Utc>>,
pub id: Option<String>,
pub kind: Option<String>,
pub metageneration: Option<i64>,
pub name: Option<String>,
pub self_link: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
A managed folder.
§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 managed folders (none)
- get managed folders (response)
- get iam policy managed folders (none)
- insert managed folders (request|response)
- list managed folders (none)
- set iam policy managed folders (none)
- test iam permissions managed folders (none)
Fields§
§bucket: Option<String>
The name of the bucket containing this managed folder.
create_time: Option<DateTime<Utc>>
The creation time of the managed folder in RFC 3339 format.
id: Option<String>
The ID of the managed folder, including the bucket name and managed folder name.
kind: Option<String>
The kind of item this is. For managed folders, this is always storage#managedFolder.
metageneration: Option<i64>
The version of the metadata for this managed folder. Used for preconditions and for detecting changes in metadata.
name: Option<String>
The name of the managed folder. Required if not specified by URL parameter.
self_link: Option<String>
The link to this managed folder.
update_time: Option<DateTime<Utc>>
The last update time of the managed folder metadata in RFC 3339 format.
Trait Implementations§
Source§impl Clone for ManagedFolder
impl Clone for ManagedFolder
Source§fn clone(&self) -> ManagedFolder
fn clone(&self) -> ManagedFolder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ManagedFolder
impl Debug for ManagedFolder
Source§impl Default for ManagedFolder
impl Default for ManagedFolder
Source§fn default() -> ManagedFolder
fn default() -> ManagedFolder
Source§impl<'de> Deserialize<'de> for ManagedFolder
impl<'de> Deserialize<'de> for ManagedFolder
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>,
Source§impl Serialize for ManagedFolder
impl Serialize for ManagedFolder
impl RequestValue for ManagedFolder
impl Resource for ManagedFolder
impl ResponseResult for ManagedFolder
Auto Trait Implementations§
impl Freeze for ManagedFolder
impl RefUnwindSafe for ManagedFolder
impl Send for ManagedFolder
impl Sync for ManagedFolder
impl Unpin for ManagedFolder
impl UnwindSafe for ManagedFolder
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