pub struct StreamStartMessage {
pub transaction_id: Option<i32>,
pub is_first_segment: bool,
}
Fields§
§transaction_id: Option<i32>
Xid of the transaction (only present for streamed transactions).
NOTE: This field is available since protocol version 2.
is_first_segment: bool
Is it a first stream segment?
Auto Trait Implementations§
impl Freeze for StreamStartMessage
impl RefUnwindSafe for StreamStartMessage
impl Send for StreamStartMessage
impl Sync for StreamStartMessage
impl Unpin for StreamStartMessage
impl UnwindSafe for StreamStartMessage
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