pub struct KeyToCreate {
pub access: String,
pub secret: String,
pub description: Option<String>,
pub expired_at: Option<DateTime<FixedOffset>>,
}Fields§
§access: String§secret: String§description: Option<String>§expired_at: Option<DateTime<FixedOffset>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for KeyToCreate
impl<'de> Deserialize<'de> for KeyToCreate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for KeyToCreate
impl RefUnwindSafe for KeyToCreate
impl Send for KeyToCreate
impl Sync for KeyToCreate
impl Unpin for KeyToCreate
impl UnwindSafe for KeyToCreate
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