pub struct ApiCallMeta {
pub profile_name: Option<String>,
pub team_id: String,
pub user_id: String,
pub method: String,
pub command: String,
pub token_type: String,
}Expand description
Execution metadata
Fields§
§profile_name: Option<String>§team_id: String§user_id: String§method: String§command: String§token_type: StringTrait Implementations§
Source§impl Debug for ApiCallMeta
impl Debug for ApiCallMeta
Source§impl<'de> Deserialize<'de> for ApiCallMeta
impl<'de> Deserialize<'de> for ApiCallMeta
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 ApiCallMeta
impl RefUnwindSafe for ApiCallMeta
impl Send for ApiCallMeta
impl Sync for ApiCallMeta
impl Unpin for ApiCallMeta
impl UnwindSafe for ApiCallMeta
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