Struct TiffKindStandard

pub struct TiffKindStandard;

Create a standard Tiff file.

Trait Implementations

impl TiffKind for TiffKindStandard

type OffsetType = u32;
type OffsetArrayType = [u32];
fn write_header<W: Write>(writer: &mut TiffWriter<W>) -> TiffResult<()>
fn convert_offset(offset: u64) -> TiffResult<Self::OffsetType>
fn write_offset<W: Write>(writer: &mut TiffWriter<W>, offset: u64) -> TiffResult<()>
fn write_entry_count<W: Write>(writer: &mut TiffWriter<W>, count: usize) -> TiffResult<()>
fn convert_slice(slice: &[Self::OffsetType]) -> &Self::OffsetArrayType

Auto Trait Implementations

impl Freeze for TiffKindStandard

impl RefUnwindSafe for TiffKindStandard

impl Send for TiffKindStandard

impl Sync for TiffKindStandard

impl Unpin for TiffKindStandard

impl UnsafeUnpin for TiffKindStandard

impl UnwindSafe for TiffKindStandard

Blanket Implementations

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for TiffKindStandard where ST: ?Sized, DT: ?Sized,

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for TiffKindStandard where ST: ?Sized, DT: ?Sized,

impl<T> Any for TiffKindStandard where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for TiffKindStandard where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for TiffKindStandard where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> From<T> for TiffKindStandard

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> Read<Exclusive, BecauseExclusive> for TiffKindStandard where T: ?Sized,

impl<T, U> Into<U> for TiffKindStandard where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for TiffKindStandard where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for TiffKindStandard where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>