Struct aws_sdk_glue::types::BlueprintDetails
source · #[non_exhaustive]pub struct BlueprintDetails {
pub blueprint_name: Option<String>,
pub run_id: Option<String>,
}Expand description
The details of a blueprint.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.blueprint_name: Option<String>The name of the blueprint.
run_id: Option<String>The run ID for this blueprint.
Implementations§
source§impl BlueprintDetails
impl BlueprintDetails
sourcepub fn builder() -> BlueprintDetailsBuilder
pub fn builder() -> BlueprintDetailsBuilder
Creates a new builder-style object to manufacture BlueprintDetails.
Trait Implementations§
source§impl Clone for BlueprintDetails
impl Clone for BlueprintDetails
source§fn clone(&self) -> BlueprintDetails
fn clone(&self) -> BlueprintDetails
Returns a copy 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 BlueprintDetails
impl Debug for BlueprintDetails
source§impl PartialEq<BlueprintDetails> for BlueprintDetails
impl PartialEq<BlueprintDetails> for BlueprintDetails
source§fn eq(&self, other: &BlueprintDetails) -> bool
fn eq(&self, other: &BlueprintDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BlueprintDetails
Auto Trait Implementations§
impl RefUnwindSafe for BlueprintDetails
impl Send for BlueprintDetails
impl Sync for BlueprintDetails
impl Unpin for BlueprintDetails
impl UnwindSafe for BlueprintDetails
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