pub struct SupportHandoff {
pub id: SupportHandoffId,
pub digest: SupportHandoffDigest,
pub project_id: String,
pub portal_origin: String,
pub return_location: String,
pub requester_subject: String,
pub requester_permissions: Vec<String>,
pub surface: SupportSurface,
pub context: SupportContext,
pub correlation_id: Uuid,
pub expires_at: DateTime<Utc>,
pub consumed_result: Option<SupportHandoffResult>,
}Fields§
§id: SupportHandoffId§digest: SupportHandoffDigest§project_id: String§portal_origin: String§return_location: String§requester_subject: String§requester_permissions: Vec<String>§surface: SupportSurface§context: SupportContext§correlation_id: Uuid§expires_at: DateTime<Utc>§consumed_result: Option<SupportHandoffResult>Trait Implementations§
Source§impl Clone for SupportHandoff
impl Clone for SupportHandoff
Source§fn clone(&self) -> SupportHandoff
fn clone(&self) -> SupportHandoff
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 SupportHandoff
impl Debug for SupportHandoff
Source§impl<'de> Deserialize<'de> for SupportHandoff
impl<'de> Deserialize<'de> for SupportHandoff
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
impl Eq for SupportHandoff
Source§impl PartialEq for SupportHandoff
impl PartialEq for SupportHandoff
Source§impl Serialize for SupportHandoff
impl Serialize for SupportHandoff
impl StructuralPartialEq for SupportHandoff
Auto Trait Implementations§
impl Freeze for SupportHandoff
impl RefUnwindSafe for SupportHandoff
impl Send for SupportHandoff
impl Sync for SupportHandoff
impl Unpin for SupportHandoff
impl UnsafeUnpin for SupportHandoff
impl UnwindSafe for SupportHandoff
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.