pub struct Token<const S: usize> { /* private fields */ }Expand description
A random Token
Implementations§
Trait Implementations§
Source§impl<'m, const SI: usize> DecodeMessage<'m> for Token<SI>
impl<'m, const SI: usize> DecodeMessage<'m> for Token<SI>
Source§const WIRE_TYPE: WireType = WireType::Len
const WIRE_TYPE: WireType = WireType::Len
This field is just a hint, merge might accept another type Read more
fn decode_default() -> Self
Source§fn merge(
&mut self,
kind: FieldKind<'m>,
is_field: bool,
) -> Result<(), DecodeError>
fn merge( &mut self, kind: FieldKind<'m>, is_field: bool, ) -> Result<(), DecodeError>
kind does not need to be the same as Self::WIRE_TYPE Read more
fn parse_from_bytes(b: &'m [u8]) -> Result<Self, DecodeError>where
Self: Sized,
Source§impl<'de, const S: usize> Deserialize<'de> for Token<S>
impl<'de, const S: usize> Deserialize<'de> for Token<S>
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
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<const SI: usize> EncodeMessage for Token<SI>
impl<const SI: usize> EncodeMessage for Token<SI>
Source§const WIRE_TYPE: WireType = WireType::Len
const WIRE_TYPE: WireType = WireType::Len
at the moment only used to check if this message can be packed
fn is_default(&self) -> bool
Source§fn encoded_size(
&mut self,
field: Option<FieldOpt>,
builder: &mut SizeBuilder,
) -> Result<(), EncodeError>
fn encoded_size( &mut self, field: Option<FieldOpt>, builder: &mut SizeBuilder, ) -> Result<(), EncodeError>
how big will the size be after encoding Read more
Source§fn encode<B>(
&mut self,
field: Option<FieldOpt>,
encoder: &mut MessageEncoder<B>,
) -> Result<(), EncodeError>where
B: BytesWrite,
fn encode<B>(
&mut self,
field: Option<FieldOpt>,
encoder: &mut MessageEncoder<B>,
) -> Result<(), EncodeError>where
B: BytesWrite,
In most cases before this is called encoded_size get’s called Read more
fn write_to_bytes(&mut self) -> Result<Vec<u8>, EncodeError>
Source§impl<'r, const SI: usize> FromSql<'r> for Token<SI>
impl<'r, const SI: usize> FromSql<'r> for Token<SI>
Source§fn from_sql(
ty: &Type,
raw: &'r [u8],
) -> Result<Self, Box<dyn Error + Sync + Send>>
fn from_sql( ty: &Type, raw: &'r [u8], ) -> Result<Self, Box<dyn Error + Sync + Send>>
Creates a new value of this type from a buffer of data of the specified
Postgres
Type in its binary format. Read moreSource§fn accepts(ty: &Type) -> bool
fn accepts(ty: &Type) -> bool
Determines if a value of this type can be created from the specified
Postgres
Type.Source§impl<const SI: usize> ToSql for Token<SI>
impl<const SI: usize> ToSql for Token<SI>
Source§fn to_sql(
&self,
ty: &Type,
out: &mut BytesMut,
) -> Result<IsNull, Box<dyn Error + Sync + Send>>where
Self: Sized,
fn to_sql(
&self,
ty: &Type,
out: &mut BytesMut,
) -> Result<IsNull, Box<dyn Error + Sync + Send>>where
Self: Sized,
Converts the value of
self into the binary format of the specified
Postgres Type, appending it to out. Read moreSource§fn accepts(ty: &Type) -> boolwhere
Self: Sized,
fn accepts(ty: &Type) -> boolwhere
Self: Sized,
Determines if a value of this type can be converted to the specified
Postgres
Type.Source§fn to_sql_checked(
&self,
ty: &Type,
out: &mut BytesMut,
) -> Result<IsNull, Box<dyn Error + Sync + Send>>
fn to_sql_checked( &self, ty: &Type, out: &mut BytesMut, ) -> Result<IsNull, Box<dyn Error + Sync + Send>>
An adaptor method used internally by Rust-Postgres. Read more
Source§fn encode_format(&self, _ty: &Type) -> Format
fn encode_format(&self, _ty: &Type) -> Format
Specify the encode format
impl<const S: usize> Eq for Token<S>
impl<const S: usize> StructuralPartialEq for Token<S>
Auto Trait Implementations§
impl<const S: usize> Freeze for Token<S>
impl<const S: usize> RefUnwindSafe for Token<S>
impl<const S: usize> Send for Token<S>
impl<const S: usize> Sync for Token<S>
impl<const S: usize> Unpin for Token<S>
impl<const S: usize> UnwindSafe for Token<S>
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
Source§impl<T> BorrowToSql for Twhere
T: ToSql,
impl<T> BorrowToSql for Twhere
T: ToSql,
Source§fn borrow_to_sql(&self) -> &dyn ToSql
fn borrow_to_sql(&self) -> &dyn ToSql
Returns a reference to
self as a ToSql trait object.