pub enum SCPickerFilterOutcome {
Filter(SCContentFilter),
Cancelled,
Error(String),
}Expand description
Result from the simple show_filter() API
Variants§
Filter(SCContentFilter)
User selected content - contains the filter to use with SCStream
Cancelled
User cancelled the picker
Error(String)
An error occurred
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SCPickerFilterOutcome
impl RefUnwindSafe for SCPickerFilterOutcome
impl Send for SCPickerFilterOutcome
impl Sync for SCPickerFilterOutcome
impl Unpin for SCPickerFilterOutcome
impl UnwindSafe for SCPickerFilterOutcome
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