Skip to main content

TtcWriter

Struct TtcWriter 

Source
pub struct TtcWriter { /* private fields */ }

Implementations§

Source§

impl TtcWriter

Source

pub fn new() -> Self

Source

pub fn with_capacity(capacity: usize) -> Self

A writer whose backing buffer is preallocated to capacity bytes. A TtcWriter::new() starts at zero capacity, so a payload built from many small write_* pushes grows the Vec through several doublings — each a separate heap allocation. Sizing the buffer once (to a small-payload default or an exact known length) collapses those growth reallocs to a single allocation. The written bytes are byte-identical either way; this is a pure allocation optimization.

Source

pub fn into_bytes(self) -> Vec<u8>

Source

pub fn write_u8(&mut self, value: u8)

Source

pub fn write_u16be(&mut self, value: u16)

Source

pub fn write_u16le(&mut self, value: u16)

Source

pub fn write_u32be(&mut self, value: u32)

Source

pub fn write_u64be(&mut self, value: u64)

Source

pub fn write_ub2(&mut self, value: u16)

Source

pub fn write_ub4(&mut self, value: u32)

Source

pub fn write_ub8(&mut self, value: u64)

Source

pub fn write_seq_num(&mut self)

Source

pub fn write_raw(&mut self, value: &[u8])

Source

pub fn write_bytes_with_length(&mut self, value: &[u8]) -> Result<()>

Source

pub fn write_bytes_with_two_lengths( &mut self, value: Option<&[u8]>, ) -> Result<()>

Source

pub fn write_str_two_lengths(&mut self, value: &str) -> Result<()>

Source

pub fn write_sb4(&mut self, value: i32)

Writes a 32-bit signed integer in Oracle universal (sign-magnitude) format: a length byte whose high bit (0x80) is set for negatives, followed by the big-endian magnitude bytes. Mirrors the reference WriteBuffer.write_sb4 (impl/base/buffer.pyx).

Source

pub fn write_keyword_value_pair( &mut self, text_value: Option<&[u8]>, binary_value: Option<&[u8]>, keyword: u16, ) -> Result<()>

Writes a keyword/value pair (text and binary values plus a ub2 keyword) as used by the AQ message-property extension list. Mirrors the reference WriteBuffer.write_keyword_value_pair (impl/thin/packet.pyx:859).

Source

pub fn write_function_code(&mut self, function_code: u8)

Source

pub fn write_function_code_with_seq(&mut self, function_code: u8, seq_num: u8)

Trait Implementations§

Source§

impl Clone for TtcWriter

Source§

fn clone(&self) -> TtcWriter

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TtcWriter

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for TtcWriter

Source§

fn default() -> TtcWriter

Returns the “default value” for a type. Read more
Source§

impl Eq for TtcWriter

Source§

impl PartialEq for TtcWriter

Source§

fn eq(&self, other: &TtcWriter) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for TtcWriter

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V