[][src]Trait image_capture_core::camera_item::ICCameraFile

pub trait ICCameraFile: Sized {
    unsafe fn fileSize(self) -> off_t;
unsafe fn orientation(self) -> ICEXIFOrientationType;
unsafe fn duration(self) -> c_double;
unsafe fn sidecarFiles(self) -> id; }

This class represents a folder on an ICCameraDevice object.

Required methods

unsafe fn fileSize(self) -> off_t

Size of file in bytes.

unsafe fn orientation(self) -> ICEXIFOrientationType

Desired orientation of image to use when it is downloaded.

unsafe fn duration(self) -> c_double

Duration of audio/video file in seconds.

unsafe fn sidecarFiles(self) -> id

This property is NULL if there are no sidecar files associated with this file. Otherwise it is an array of ICCameraFile instances of sidecar files associated with this file. An example of a sidecar file is a file with the same base name as this file and having an extension XMP.

Loading content...

Implementations on Foreign Types

impl ICCameraFile for id[src]

Loading content...

Implementors

Loading content...