Struct tiff::encoder::DirectoryEncoder
source · [−]Expand description
Low level interface to encode ifd directories.
You should call finish
on this when you are finished with it.
Encoding can silently fail while this is dropping.
Implementations
sourceimpl<'a, W: 'a + Write + Seek, K: TiffKind> DirectoryEncoder<'a, W, K>
impl<'a, W: 'a + Write + Seek, K: TiffKind> DirectoryEncoder<'a, W, K>
sourcepub fn write_tag<T: TiffValue>(&mut self, tag: Tag, value: T) -> TiffResult<()>
pub fn write_tag<T: TiffValue>(&mut self, tag: Tag, value: T) -> TiffResult<()>
Write a single ifd tag.
sourcepub fn write_data<T: TiffValue>(&mut self, value: T) -> TiffResult<u64>
pub fn write_data<T: TiffValue>(&mut self, value: T) -> TiffResult<u64>
Write some data to the tiff file, the offset of the data is returned.
This could be used to write tiff strips.
sourcepub fn finish(self) -> TiffResult<()>
pub fn finish(self) -> TiffResult<()>
Write out the ifd directory.
Trait Implementations
Auto Trait Implementations
impl<'a, W, K> RefUnwindSafe for DirectoryEncoder<'a, W, K> where
W: RefUnwindSafe,
<K as TiffKind>::OffsetType: RefUnwindSafe,
impl<'a, W, K> Send for DirectoryEncoder<'a, W, K> where
W: Send,
<K as TiffKind>::OffsetType: Send,
impl<'a, W, K> Sync for DirectoryEncoder<'a, W, K> where
W: Sync,
<K as TiffKind>::OffsetType: Sync,
impl<'a, W, K> Unpin for DirectoryEncoder<'a, W, K>
impl<'a, W, K> !UnwindSafe for DirectoryEncoder<'a, W, K>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more