pub struct BuildOutputs {
pub identifier: String,
}Expand description
Outputs generated by a successfully provisioned Build.
Fields§
§identifier: StringThe platform-specific build project identifier (ARN for AWS, project ID for GCP, resource ID for Azure).
Trait Implementations§
Source§impl Clone for BuildOutputs
impl Clone for BuildOutputs
Source§fn clone(&self) -> BuildOutputs
fn clone(&self) -> BuildOutputs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BuildOutputs
impl Debug for BuildOutputs
Source§impl<'de> Deserialize<'de> for BuildOutputs
impl<'de> Deserialize<'de> for BuildOutputs
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 PartialEq for BuildOutputs
impl PartialEq for BuildOutputs
Source§impl ResourceOutputsDefinition for BuildOutputs
impl ResourceOutputsDefinition for BuildOutputs
Source§fn resource_type() -> ResourceType
fn resource_type() -> ResourceType
Returns the resource type this output corresponds to
Source§fn box_clone(&self) -> Box<dyn ResourceOutputsDefinition>
fn box_clone(&self) -> Box<dyn ResourceOutputsDefinition>
Creates a boxed clone of this resource outputs
Source§fn outputs_eq(&self, other: &dyn ResourceOutputsDefinition) -> bool
fn outputs_eq(&self, other: &dyn ResourceOutputsDefinition) -> bool
For equality comparison between resource outputs
Source§impl Serialize for BuildOutputs
impl Serialize for BuildOutputs
impl StructuralPartialEq for BuildOutputs
Auto Trait Implementations§
impl Freeze for BuildOutputs
impl RefUnwindSafe for BuildOutputs
impl Send for BuildOutputs
impl Sync for BuildOutputs
impl Unpin for BuildOutputs
impl UnsafeUnpin for BuildOutputs
impl UnwindSafe for BuildOutputs
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
Mutably borrows from an owned value. Read more