pub enum Family {
Unknown = 0,
DeviceGray = 1,
DeviceRgb = 2,
DeviceCmyk = 3,
CalGray = 4,
CalRgb = 5,
Lab = 6,
IccBased = 7,
Separation = 8,
DeviceN = 9,
Indexed = 10,
Pattern = 11,
}Expand description
The eleven colour space families, with the integer tags PDFium exposes through its public API.
Variants§
Unknown = 0
A space that failed to load.
DeviceGray = 1
DeviceGray.
DeviceRgb = 2
DeviceRGB.
DeviceCmyk = 3
DeviceCMYK.
CalGray = 4
CalGray.
CalRgb = 5
CalRGB.
Lab = 6
Lab.
IccBased = 7
ICCBased.
Separation = 8
Separation.
DeviceN = 9
DeviceN.
Indexed = 10
Indexed.
Pattern = 11
Pattern.
Trait Implementations§
impl Copy for Family
impl Eq for Family
impl StructuralPartialEq for Family
Auto Trait Implementations§
impl Freeze for Family
impl RefUnwindSafe for Family
impl Send for Family
impl Sync for Family
impl Unpin for Family
impl UnsafeUnpin for Family
impl UnwindSafe for Family
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more