pub struct SatfSession {
pub session_id: String,
pub nodes: Vec<SatfNode>,
pub edges: Vec<SatfEdge>,
pub extensions: Option<Value>,
}Fields§
§session_id: String§nodes: Vec<SatfNode>§edges: Vec<SatfEdge>§extensions: Option<Value>Trait Implementations§
Source§impl Clone for SatfSession
impl Clone for SatfSession
Source§fn clone(&self) -> SatfSession
fn clone(&self) -> SatfSession
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 SatfSession
impl Debug for SatfSession
Source§impl<'de> Deserialize<'de> for SatfSession
impl<'de> Deserialize<'de> for SatfSession
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 SatfSession
impl PartialEq for SatfSession
Source§impl Serialize for SatfSession
impl Serialize for SatfSession
impl StructuralPartialEq for SatfSession
Auto Trait Implementations§
impl Freeze for SatfSession
impl RefUnwindSafe for SatfSession
impl Send for SatfSession
impl Sync for SatfSession
impl Unpin for SatfSession
impl UnsafeUnpin for SatfSession
impl UnwindSafe for SatfSession
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