pub struct PropFlags {
pub readable: bool,
pub writable: bool,
}Expand description
Read/write access flags for a property, the GObject G_PARAM_READABLE /
G_PARAM_WRITABLE analog shown in a gst-inspect dump. Default is
read+write; a derived/computed property is read-only.
Fields§
§readable: bool§writable: boolImplementations§
Trait Implementations§
impl Copy for PropFlags
impl Eq for PropFlags
impl StructuralPartialEq for PropFlags
Auto Trait Implementations§
impl Freeze for PropFlags
impl RefUnwindSafe for PropFlags
impl Send for PropFlags
impl Sync for PropFlags
impl Unpin for PropFlags
impl UnsafeUnpin for PropFlags
impl UnwindSafe for PropFlags
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