[][src]Struct serde_odbc::String

#[repr(C)]
pub struct String<N: ArrayLength<u8>> { /* fields omitted */ }

Methods

impl<N: ArrayLength<u8>> String<N>[src]

pub fn assign<'a>(&mut self, value: &'a [u8])[src]

pub fn as_slice(&self) -> Option<&[u8]>[src]

pub fn as_mut_slice(&mut self) -> Option<&mut [u8]>[src]

Trait Implementations

impl<'a, N: ArrayLength<u8>> Into<Option<&'a [u8]>> for &'a String<N>[src]

impl<'a, N: ArrayLength<u8>> Into<Option<&'a mut [u8]>> for &'a mut String<N>[src]

impl<N: ArrayLength<u8>> Default for String<N>[src]

impl<'a, N: ArrayLength<u8>> From<&'a [u8]> for String<N>[src]

impl<N: Clone + ArrayLength<u8>> Clone for String<N>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<N: ArrayLength<u8>> Serialize for String<N>[src]

Auto Trait Implementations

impl<N> Send for String<N>

impl<N> Sync for String<N>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Same for T[src]

type Output = T

Should always be Self