Skip to main content

XdrEncoder

Struct XdrEncoder 

Source
pub struct XdrEncoder { /* private fields */ }
Expand description

XDR encoder that writes into a pre-allocated Vec<u8>.

Implementations§

Source§

impl XdrEncoder

Source

pub fn new(capacity: usize) -> Self

Create a new encoder with the given initial capacity.

Source

pub fn encode_u32(&mut self, v: u32)

Encode a 32-bit unsigned integer (big-endian).

Source

pub fn encode_i32(&mut self, v: i32)

Encode a 32-bit signed integer (big-endian).

Source

pub fn encode_u64(&mut self, v: u64)

Encode a 64-bit unsigned integer (big-endian, as two u32s).

Source

pub fn encode_i64(&mut self, v: i64)

Encode a 64-bit signed integer (big-endian).

Source

pub fn encode_bool(&mut self, v: bool)

Encode a boolean as a u32 (0 or 1).

Source

pub fn encode_opaque(&mut self, data: &[u8])

Encode variable-length opaque data: u32 length + data + padding to 4-byte boundary.

Source

pub fn encode_opaque_fixed(&mut self, data: &[u8])

Encode fixed-length opaque data (no length prefix, just data + padding).

Source

pub fn encode_string(&mut self, s: &str)

Encode a UTF-8 string (same wire format as opaque).

Source

pub fn encode_raw(&mut self, data: &[u8])

Append raw bytes without XDR framing (no length prefix, no padding).

Source

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

Consume the encoder and return the encoded bytes.

Source

pub fn len(&self) -> usize

Current encoded length in bytes.

Source

pub fn is_empty(&self) -> bool

Whether the buffer is empty.

Source

pub fn as_bytes(&self) -> &[u8]

Get a reference to the internal buffer.

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<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more