Trait truetype::value::Write

source ·
pub trait Write {
    // Required method
    fn write<T>(&self, _: &mut T) -> Result<(), Error>
       where T: Write;
}
Expand description

A type that can be written.

Required Methods§

source

fn write<T>(&self, _: &mut T) -> Result<(), Error>
where T: Write,

Write the value.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Write for i8

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

source§

impl Write for i16

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

source§

impl Write for i32

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

source§

impl Write for i64

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

source§

impl Write for u8

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

source§

impl Write for u16

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

source§

impl Write for u32

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

source§

impl Write for [i8; 4]

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

source§

impl Write for [u8; 3]

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

source§

impl Write for [u8; 4]

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

source§

impl Write for [u8; 10]

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

source§

impl<U> Write for [U]
where U: Write,

source§

fn write<T>(&self, tape: &mut T) -> Result<(), Error>
where T: Write,

Implementors§