pub struct Manifest {
pub config: Option<ConfigFile>,
pub expanded_config: Option<String>,
pub id: Option<u64>,
pub imports: Option<Vec<ImportFile>>,
pub insert_time: Option<String>,
pub layout: Option<String>,
pub manifest_size_bytes: Option<i64>,
pub manifest_size_limit_bytes: Option<i64>,
pub name: Option<String>,
pub self_link: Option<String>,
}
Expand description
There is no detailed description.
§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).
- get manifests (response)
- list manifests (none)
Fields§
§config: Option<ConfigFile>
Output only. The YAML configuration for this manifest.
expanded_config: Option<String>
Output only. The fully-expanded configuration file, including any templates and references.
id: Option<u64>
no description provided
imports: Option<Vec<ImportFile>>
Output only. The imported files for this manifest.
insert_time: Option<String>
Output only. Creation timestamp in RFC3339 text format.
layout: Option<String>
Output only. The YAML layout for this manifest.
manifest_size_bytes: Option<i64>
Output only. The computed size of the fully expanded manifest.
manifest_size_limit_bytes: Option<i64>
Output only. The size limit for expanded manifests in the project.
name: Option<String>
Output only. The name of the manifest.
self_link: Option<String>
Output only. Self link for the manifest.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Manifest
impl<'de> Deserialize<'de> for Manifest
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 Resource for Manifest
impl ResponseResult for Manifest
Auto Trait Implementations§
impl Freeze for Manifest
impl RefUnwindSafe for Manifest
impl Send for Manifest
impl Sync for Manifest
impl Unpin for Manifest
impl UnwindSafe for Manifest
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