pub struct SecretVersion {
pub version_id: String,
pub secret_string: Option<String>,
pub secret_binary: Option<Vec<u8>>,
pub stages: Vec<String>,
pub created_at: DateTime<Utc>,
}Fields§
§version_id: String§secret_string: Option<String>§secret_binary: Option<Vec<u8>>§stages: Vec<String>§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for SecretVersion
impl Clone for SecretVersion
Source§fn clone(&self) -> SecretVersion
fn clone(&self) -> SecretVersion
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 moreAuto Trait Implementations§
impl Freeze for SecretVersion
impl RefUnwindSafe for SecretVersion
impl Send for SecretVersion
impl Sync for SecretVersion
impl Unpin for SecretVersion
impl UnsafeUnpin for SecretVersion
impl UnwindSafe for SecretVersion
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