pub struct ItchKey {
pub key: String,
pub id: u64,
pub user_id: u64,
pub source: String,
pub revoked: Option<bool>,
pub created_at: OffsetDateTime,
pub updated_at: OffsetDateTime,
}
Fields§
§key: String
§id: u64
§user_id: u64
§source: String
§revoked: Option<bool>
§created_at: OffsetDateTime
§updated_at: OffsetDateTime
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ItchKey
impl<'de> Deserialize<'de> for ItchKey
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 ItchKey
impl RefUnwindSafe for ItchKey
impl Send for ItchKey
impl Sync for ItchKey
impl Unpin for ItchKey
impl UnwindSafe for ItchKey
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