pub enum SendStrategy {
DesktopThenPush,
DesktopAndPush,
Desktop,
Push,
Unknown,
}Variants§
DesktopThenPush
DesktopAndPush
Desktop
Push
Unknown
Catch-all for unknown/new variants added by Linear.
Trait Implementations§
Source§impl Clone for SendStrategy
impl Clone for SendStrategy
Source§fn clone(&self) -> SendStrategy
fn clone(&self) -> SendStrategy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SendStrategy
impl Debug for SendStrategy
Source§impl<'de> Deserialize<'de> for SendStrategy
impl<'de> Deserialize<'de> for SendStrategy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SendStrategy
impl PartialEq for SendStrategy
Source§impl Serialize for SendStrategy
impl Serialize for SendStrategy
impl Eq for SendStrategy
impl StructuralPartialEq for SendStrategy
Auto Trait Implementations§
impl Freeze for SendStrategy
impl RefUnwindSafe for SendStrategy
impl Send for SendStrategy
impl Sync for SendStrategy
impl Unpin for SendStrategy
impl UnwindSafe for SendStrategy
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