Struct pb_jelly::Sfixed32

source ·
pub struct Sfixed32(pub i32);

Tuple Fields§

§0: i32

Methods from Deref<Target = i32>§

1.43.0 · source

pub const MIN: i32 = -2_147_483_648i32

1.43.0 · source

pub const MAX: i32 = 2_147_483_647i32

1.53.0 · source

pub const BITS: u32 = 32u32

Trait Implementations§

source§

impl Clone for Sfixed32

source§

fn clone(&self) -> Sfixed32

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 Debug for Sfixed32

source§

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

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

impl Default for Sfixed32

source§

fn default() -> Sfixed32

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

impl Deref for Sfixed32

§

type Target = i32

The resulting type after dereferencing.
source§

fn deref(&self) -> &i32

Dereferences the value.
source§

impl DerefMut for Sfixed32

source§

fn deref_mut(&mut self) -> &mut i32

Mutably dereferences the value.
source§

impl<'de> Deserialize<'de> for Sfixed32

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Hash for Sfixed32

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Message for Sfixed32

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 serialize<W: PbBufferWriter>(&self, w: &mut W) -> Result<()>

Serializes the message to the writer.
source§

fn deserialize<B: PbBufferReader>(&mut self, buf: &mut B) -> 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 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_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 Ord for Sfixed32

source§

fn cmp(&self, other: &Sfixed32) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Sfixed32

source§

fn eq(&self, other: &Sfixed32) -> 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 PartialOrd for Sfixed32

source§

fn partial_cmp(&self, other: &Sfixed32) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Reflection for Sfixed32

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 Serialize for Sfixed32

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for Sfixed32

source§

impl Eq for Sfixed32

source§

impl StructuralEq for Sfixed32

source§

impl StructuralPartialEq for Sfixed32

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.

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.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,