Struct pb_jelly::Lazy

source ·
pub struct Lazy<B> { /* private fields */ }
Expand description

A wrapper around a PbBuffer, which implements Message.

Implementations§

source§

impl<B> Lazy<B>

source

pub fn new(r: B) -> Self

source

pub fn into_buffer(self) -> B
where B: Default,

Trait Implementations§

source§

impl<B: Clone> Clone for Lazy<B>

source§

fn clone(&self) -> Lazy<B>

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl<B> Debug for Lazy<B>

source§

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

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

impl<B> Default for Lazy<B>

source§

fn default() -> Self

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

impl<B: PbBuffer + PartialEq> Message for Lazy<B>

source§

fn compute_size(&self) -> usize

Computes the number of bytes a message will take when serialized. This does not include number of bytes required for tag+wire_format or the bytes used to represent length of the message in case of LengthDelimited messages/types.
source§

fn compute_grpc_slices_size(&self) -> usize

Computes the number of bytes in all grpc slices. This information is used to optimize memory allocations in zero-copy encoding.
source§

fn serialize<W: PbBufferWriter>(&self, w: &mut W) -> Result<()>

Serializes the message to the writer.
source§

fn deserialize<R: PbBufferReader>(&mut self, r: &mut R) -> Result<()>

Reads the message from the blob reader, copying as necessary.
source§

fn descriptor(&self) -> Option<MessageDescriptor>

Returns the MessageDescriptor for this message, if this is not a primitive type.
source§

fn serialize_to_vec(&self) -> Vec<u8>

Helper method for serializing a message to a Vec.
source§

fn serialize_to_writer<W: Write>(&self, writer: &mut W) -> Result<()>

Helper method for serializing a message to an arbitrary Write. Read more
source§

fn deserialize_from_slice(slice: &[u8]) -> Result<Self>

Helper method for deserializing a message from a u8 slice. Read more
source§

impl<B: PartialEq> PartialEq for Lazy<B>

source§

fn eq(&self, other: &Lazy<B>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<B: PbBuffer + PartialEq> Reflection for Lazy<B>

source§

fn which_one_of(&self, _oneof_name: &str) -> Option<&'static str>

Returns the name of the field that is set inside a oneof group. Read more
source§

fn get_field_mut(&mut self, _field_name: &str) -> FieldMut<'_>

Returns a mutable borrow of the given field. Read more
source§

impl<B> StructuralPartialEq for Lazy<B>

Auto Trait Implementations§

§

impl<B> RefUnwindSafe for Lazy<B>
where B: RefUnwindSafe,

§

impl<B> Send for Lazy<B>
where B: Send,

§

impl<B> Sync for Lazy<B>
where B: Sync,

§

impl<B> Unpin for Lazy<B>
where B: Unpin,

§

impl<B> UnwindSafe for Lazy<B>
where B: UnwindSafe,

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.

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> Message for T
where T: Message,

source§

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

§

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>,

§

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>,

§

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.