pub struct ApiCallContext {
pub profile_name: Option<String>,
pub team_id: String,
pub user_id: String,
}Expand description
Execution context for API calls
Fields§
§profile_name: Option<String>§team_id: String§user_id: StringTrait Implementations§
Source§impl Clone for ApiCallContext
impl Clone for ApiCallContext
Source§fn clone(&self) -> ApiCallContext
fn clone(&self) -> ApiCallContext
Returns a duplicate of the value. Read more
1.0.0 · 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 ApiCallContext
impl Debug for ApiCallContext
Source§impl<'de> Deserialize<'de> for ApiCallContext
impl<'de> Deserialize<'de> for ApiCallContext
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 ApiCallContext
impl RefUnwindSafe for ApiCallContext
impl Send for ApiCallContext
impl Sync for ApiCallContext
impl Unpin for ApiCallContext
impl UnwindSafe for ApiCallContext
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