pub enum AppIDs {
CreatorAppId(AppId),
ConsumerAppId(AppId),
Both {
creator: AppId,
consumer: AppId,
},
}
Expand description
AppID filter for queries. The “consumer” app is the app that the content is for. The “creator” app is a separate editor to create the content in, if applicable.
Variants§
Implementations§
Trait Implementations§
impl Copy for AppIDs
impl Eq for AppIDs
impl StructuralPartialEq for AppIDs
Auto Trait Implementations§
impl Freeze for AppIDs
impl RefUnwindSafe for AppIDs
impl Send for AppIDs
impl Sync for AppIDs
impl Unpin for AppIDs
impl UnwindSafe for AppIDs
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