pub struct ReplaySessionReq {
pub session_id: String,
pub verify: bool,
}Expand description
ReplaySession 参数。
Fields§
§session_id: Stringsession id
verify: bool是否同时执行 verify_chain
Trait Implementations§
Source§impl Clone for ReplaySessionReq
impl Clone for ReplaySessionReq
Source§fn clone(&self) -> ReplaySessionReq
fn clone(&self) -> ReplaySessionReq
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 ReplaySessionReq
impl Debug for ReplaySessionReq
Source§impl<'de> Deserialize<'de> for ReplaySessionReq
impl<'de> Deserialize<'de> for ReplaySessionReq
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 ReplaySessionReq
impl PartialEq for ReplaySessionReq
Source§fn eq(&self, other: &ReplaySessionReq) -> bool
fn eq(&self, other: &ReplaySessionReq) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReplaySessionReq
impl Serialize for ReplaySessionReq
impl Eq for ReplaySessionReq
impl StructuralPartialEq for ReplaySessionReq
Auto Trait Implementations§
impl Freeze for ReplaySessionReq
impl RefUnwindSafe for ReplaySessionReq
impl Send for ReplaySessionReq
impl Sync for ReplaySessionReq
impl Unpin for ReplaySessionReq
impl UnsafeUnpin for ReplaySessionReq
impl UnwindSafe for ReplaySessionReq
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