pub struct AlignStreamFrame {
pub sync_id: String,
pub task_id: String,
pub subtask_id: String,
pub seq: u64,
pub is_final: bool,
pub source_nid: Option<String>,
pub result: Option<Value>,
pub error: Option<Value>,
pub window_size: Option<u64>,
pub ack_seq: Option<u64>,
pub nak_seq: Option<u64>,
}Fields§
§sync_id: String§task_id: String§subtask_id: String§seq: u64§is_final: bool§source_nid: Option<String>§result: Option<Value>§error: Option<Value>§window_size: Option<u64>§ack_seq: Option<u64>§nak_seq: Option<u64>Implementations§
Trait Implementations§
Source§impl Clone for AlignStreamFrame
impl Clone for AlignStreamFrame
Source§fn clone(&self) -> AlignStreamFrame
fn clone(&self) -> AlignStreamFrame
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 moreAuto Trait Implementations§
impl Freeze for AlignStreamFrame
impl RefUnwindSafe for AlignStreamFrame
impl Send for AlignStreamFrame
impl Sync for AlignStreamFrame
impl Unpin for AlignStreamFrame
impl UnsafeUnpin for AlignStreamFrame
impl UnwindSafe for AlignStreamFrame
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