pub struct AppendBlockEndCommand {
pub writer_id: u128,
pub size_of_whole_events: i32,
pub data: Vec<u8>,
pub num_event: i32,
pub last_event_number: i64,
pub request_id: i64,
}
Expand description
- AppendBlockEnd Command
Fields§
§writer_id: u128
§size_of_whole_events: i32
§data: Vec<u8>
§num_event: i32
§last_event_number: i64
§request_id: i64
Trait Implementations§
Source§impl Clone for AppendBlockEndCommand
impl Clone for AppendBlockEndCommand
Source§fn clone(&self) -> AppendBlockEndCommand
fn clone(&self) -> AppendBlockEndCommand
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 Command for AppendBlockEndCommand
impl Command for AppendBlockEndCommand
Source§impl Debug for AppendBlockEndCommand
impl Debug for AppendBlockEndCommand
Source§impl<'de> Deserialize<'de> for AppendBlockEndCommand
impl<'de> Deserialize<'de> for AppendBlockEndCommand
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 AppendBlockEndCommand
impl PartialEq for AppendBlockEndCommand
Source§impl Serialize for AppendBlockEndCommand
impl Serialize for AppendBlockEndCommand
impl StructuralPartialEq for AppendBlockEndCommand
Auto Trait Implementations§
impl Freeze for AppendBlockEndCommand
impl RefUnwindSafe for AppendBlockEndCommand
impl Send for AppendBlockEndCommand
impl Sync for AppendBlockEndCommand
impl Unpin for AppendBlockEndCommand
impl UnwindSafe for AppendBlockEndCommand
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