pub struct SsmSession {
pub session_id: String,
pub target: String,
pub status: String,
pub start_date: DateTime<Utc>,
pub end_date: Option<DateTime<Utc>>,
pub owner: String,
pub reason: Option<String>,
}Fields§
§session_id: String§target: String§status: String§start_date: DateTime<Utc>§end_date: Option<DateTime<Utc>>§owner: String§reason: Option<String>Trait Implementations§
Source§impl Clone for SsmSession
impl Clone for SsmSession
Source§fn clone(&self) -> SsmSession
fn clone(&self) -> SsmSession
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 SsmSession
impl RefUnwindSafe for SsmSession
impl Send for SsmSession
impl Sync for SsmSession
impl Unpin for SsmSession
impl UnsafeUnpin for SsmSession
impl UnwindSafe for SsmSession
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