pub struct Timestamp {
pub created: DateTime<Utc>,
pub expires: DateTime<Utc>,
pub wssu_id: WSSUId,
}Expand description
WS-Security timestamp defining message creation and expiration.
Fields§
§created: DateTime<Utc>UTC time when the message was created.
expires: DateTime<Utc>UTC time when the message expires.
wssu_id: WSSUIdthe id used for the wssu:Id field, from WSSUId
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Timestamp
impl RefUnwindSafe for Timestamp
impl Send for Timestamp
impl Sync for Timestamp
impl Unpin for Timestamp
impl UnwindSafe for Timestamp
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