#[non_exhaustive]pub struct ExportProjectInput {
pub project_id: Option<String>,
}
Expand description
Request structure used in requests to export project configuration details.
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.project_id: Option<String>
Unique project identifier.
Implementations§
source§impl ExportProjectInput
impl ExportProjectInput
sourcepub fn project_id(&self) -> Option<&str>
pub fn project_id(&self) -> Option<&str>
Unique project identifier.
source§impl ExportProjectInput
impl ExportProjectInput
sourcepub fn builder() -> ExportProjectInputBuilder
pub fn builder() -> ExportProjectInputBuilder
Creates a new builder-style object to manufacture ExportProjectInput
.
Trait Implementations§
source§impl Clone for ExportProjectInput
impl Clone for ExportProjectInput
source§fn clone(&self) -> ExportProjectInput
fn clone(&self) -> ExportProjectInput
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 ExportProjectInput
impl Debug for ExportProjectInput
source§impl PartialEq<ExportProjectInput> for ExportProjectInput
impl PartialEq<ExportProjectInput> for ExportProjectInput
source§fn eq(&self, other: &ExportProjectInput) -> bool
fn eq(&self, other: &ExportProjectInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ExportProjectInput
Auto Trait Implementations§
impl RefUnwindSafe for ExportProjectInput
impl Send for ExportProjectInput
impl Sync for ExportProjectInput
impl Unpin for ExportProjectInput
impl UnwindSafe for ExportProjectInput
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