pub trait VideoOrientationExt:
IsA<VideoOrientation>
+ Sealed
+ 'static {
// Provided methods
fn hcenter(&self) -> Option<i32> { ... }
fn hflip(&self) -> Option<bool> { ... }
fn vcenter(&self) -> Option<i32> { ... }
fn vflip(&self) -> Option<bool> { ... }
fn set_hcenter(&self, center: i32) -> Result<(), BoolError> { ... }
fn set_hflip(&self, flip: bool) -> Result<(), BoolError> { ... }
fn set_vcenter(&self, center: i32) -> Result<(), BoolError> { ... }
fn set_vflip(&self, flip: bool) -> Result<(), BoolError> { ... }
}
Provided Methods§
fn hcenter(&self) -> Option<i32>
fn hflip(&self) -> Option<bool>
fn vcenter(&self) -> Option<i32>
fn vflip(&self) -> Option<bool>
fn set_hcenter(&self, center: i32) -> Result<(), BoolError>
fn set_hflip(&self, flip: bool) -> Result<(), BoolError>
fn set_vcenter(&self, center: i32) -> Result<(), BoolError>
fn set_vflip(&self, flip: bool) -> Result<(), BoolError>
Object Safety§
This trait is not object safe.