pub trait IntoBytes {
    // Required method
    fn into_bytes(&self) -> Vec<u8>;
}

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl IntoBytes for i8

source§

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

source§

impl IntoBytes for i16

source§

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

source§

impl IntoBytes for i32

source§

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

source§

impl IntoBytes for i64

source§

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

source§

impl IntoBytes for i128

source§

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

source§

impl IntoBytes for str

source§

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

source§

impl IntoBytes for u8

source§

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

source§

impl IntoBytes for u16

source§

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

source§

impl IntoBytes for u32

source§

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

source§

impl IntoBytes for u64

source§

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

source§

impl IntoBytes for u128

source§

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

source§

impl IntoBytes for String

source§

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

source§

impl IntoBytes for Vec<u8>

source§

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

source§

impl IntoBytes for [u8]

source§

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

source§

impl<'a> IntoBytes for &i8

source§

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

source§

impl<'a> IntoBytes for &i16

source§

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

source§

impl<'a> IntoBytes for &i32

source§

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

source§

impl<'a> IntoBytes for &i64

source§

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

source§

impl<'a> IntoBytes for &i128

source§

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

source§

impl<'a> IntoBytes for &str

source§

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

source§

impl<'a> IntoBytes for &u8

source§

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

source§

impl<'a> IntoBytes for &u16

source§

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

source§

impl<'a> IntoBytes for &u32

source§

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

source§

impl<'a> IntoBytes for &u64

source§

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

source§

impl<'a> IntoBytes for &u128

source§

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

source§

impl<'a> IntoBytes for &String

source§

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

source§

impl<'a> IntoBytes for &Vec<u8>

source§

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

source§

impl<'a> IntoBytes for &[u8]

source§

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

Implementors§