pub struct SessionDiffProps {
pub session_id: String,
pub diff: Vec<FileDiff>,
}Expand description
Properties for EventListResponse::SessionDiff.
Fields§
§session_id: StringSession ID.
diff: Vec<FileDiff>The file diffs.
Trait Implementations§
Source§impl Clone for SessionDiffProps
impl Clone for SessionDiffProps
Source§fn clone(&self) -> SessionDiffProps
fn clone(&self) -> SessionDiffProps
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 SessionDiffProps
impl Debug for SessionDiffProps
Source§impl<'de> Deserialize<'de> for SessionDiffProps
impl<'de> Deserialize<'de> for SessionDiffProps
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 SessionDiffProps
impl PartialEq for SessionDiffProps
Source§impl Serialize for SessionDiffProps
impl Serialize for SessionDiffProps
impl StructuralPartialEq for SessionDiffProps
Auto Trait Implementations§
impl Freeze for SessionDiffProps
impl RefUnwindSafe for SessionDiffProps
impl Send for SessionDiffProps
impl Sync for SessionDiffProps
impl Unpin for SessionDiffProps
impl UnwindSafe for SessionDiffProps
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