pub enum NativeMessagingType {
Stdio,
}
Expand description
Method used to connect the extension with the app.
Variants§
Stdio
Messages are received by the app using standard input (stdin
)
and sent using standard output (stdout
).
Trait Implementations§
Source§impl Debug for NativeMessagingType
impl Debug for NativeMessagingType
Source§impl<'de> Deserialize<'de> for NativeMessagingType
impl<'de> Deserialize<'de> for NativeMessagingType
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
Auto Trait Implementations§
impl Freeze for NativeMessagingType
impl RefUnwindSafe for NativeMessagingType
impl Send for NativeMessagingType
impl Sync for NativeMessagingType
impl Unpin for NativeMessagingType
impl UnwindSafe for NativeMessagingType
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