pub struct RequestPlaintext {
pub version: u8,
pub request_id: String,
pub issued_at: String,
pub operation: String,
pub method: String,
pub path: String,
pub project_id: Option<String>,
pub token: Option<String>,
pub claim_secret: Option<String>,
pub payload: Value,
}Fields§
§version: u8§request_id: String§issued_at: String§operation: String§method: String§path: String§project_id: Option<String>§token: Option<String>§claim_secret: Option<String>§payload: ValueTrait Implementations§
Source§impl Clone for RequestPlaintext
impl Clone for RequestPlaintext
Source§fn clone(&self) -> RequestPlaintext
fn clone(&self) -> RequestPlaintext
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RequestPlaintext
impl Debug for RequestPlaintext
Source§impl<'de> Deserialize<'de> for RequestPlaintext
impl<'de> Deserialize<'de> for RequestPlaintext
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 RequestPlaintext
impl RefUnwindSafe for RequestPlaintext
impl Send for RequestPlaintext
impl Sync for RequestPlaintext
impl Unpin for RequestPlaintext
impl UnsafeUnpin for RequestPlaintext
impl UnwindSafe for RequestPlaintext
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