Enum opencv::core::FileStorage_Mode [−][src]
#[repr(C)]
pub enum FileStorage_Mode {
READ,
WRITE,
APPEND,
MEMORY,
FORMAT_MASK,
FORMAT_XML,
FORMAT_YAML,
FORMAT_JSON,
BASE64,
WRITE_BASE64,
}
Expand description
file storage mode
Variants
value, open the file for reading
value, open the file for writing
value, open the file for appending
flag, read data from source or write data to the internal buffer (which is returned by FileStorage::release)
mask for format flags
flag, XML format
flag, YAML format
flag, JSON format
flag, write rawdata in Base64 by default. (consider using WRITE_BASE64)
flag, enable both WRITE and BASE64
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FileStorage_Mode
impl Send for FileStorage_Mode
impl Sync for FileStorage_Mode
impl Unpin for FileStorage_Mode
impl UnwindSafe for FileStorage_Mode
Blanket Implementations
Mutably borrows from an owned value. Read more