pub struct MutationSessionRecord {
pub session_id: String,
pub parent_session_id: Option<String>,
pub run_id: Option<String>,
pub worker_id: Option<String>,
pub execution_kind: Option<String>,
pub mutation_scope: String,
pub approval_mode: String,
}Fields§
§session_id: String§parent_session_id: Option<String>§run_id: Option<String>§worker_id: Option<String>§execution_kind: Option<String>§mutation_scope: String§approval_mode: StringImplementations§
Trait Implementations§
Source§impl Clone for MutationSessionRecord
impl Clone for MutationSessionRecord
Source§fn clone(&self) -> MutationSessionRecord
fn clone(&self) -> MutationSessionRecord
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 MutationSessionRecord
impl Debug for MutationSessionRecord
Source§impl Default for MutationSessionRecord
impl Default for MutationSessionRecord
Source§fn default() -> MutationSessionRecord
fn default() -> MutationSessionRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MutationSessionRecordwhere
MutationSessionRecord: Default,
impl<'de> Deserialize<'de> for MutationSessionRecordwhere
MutationSessionRecord: Default,
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
Source§impl PartialEq for MutationSessionRecord
impl PartialEq for MutationSessionRecord
Source§impl Serialize for MutationSessionRecord
impl Serialize for MutationSessionRecord
impl Eq for MutationSessionRecord
impl StructuralPartialEq for MutationSessionRecord
Auto Trait Implementations§
impl Freeze for MutationSessionRecord
impl RefUnwindSafe for MutationSessionRecord
impl Send for MutationSessionRecord
impl Sync for MutationSessionRecord
impl Unpin for MutationSessionRecord
impl UnsafeUnpin for MutationSessionRecord
impl UnwindSafe for MutationSessionRecord
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,
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.