bitwarden

Enum DeviceType

pub enum DeviceType {
Show 26 variants Android = 0, iOS = 1, ChromeExtension = 2, FirefoxExtension = 3, OperaExtension = 4, EdgeExtension = 5, WindowsDesktop = 6, MacOsDesktop = 7, LinuxDesktop = 8, ChromeBrowser = 9, FirefoxBrowser = 10, OperaBrowser = 11, EdgeBrowser = 12, IEBrowser = 13, UnknownBrowser = 14, AndroidAmazon = 15, UWP = 16, SafariBrowser = 17, VivaldiBrowser = 18, VivaldiExtension = 19, SafariExtension = 20, SDK = 21, Server = 22, WindowsCLI = 23, MacOsCLI = 24, LinuxCLI = 25,
}

Variants§

§

Android = 0

§

iOS = 1

§

ChromeExtension = 2

§

FirefoxExtension = 3

§

OperaExtension = 4

§

EdgeExtension = 5

§

WindowsDesktop = 6

§

MacOsDesktop = 7

§

LinuxDesktop = 8

§

ChromeBrowser = 9

§

FirefoxBrowser = 10

§

OperaBrowser = 11

§

EdgeBrowser = 12

§

IEBrowser = 13

§

UnknownBrowser = 14

§

AndroidAmazon = 15

§

UWP = 16

§

SafariBrowser = 17

§

VivaldiBrowser = 18

§

VivaldiExtension = 19

§

SafariExtension = 20

§

SDK = 21

§

Server = 22

§

WindowsCLI = 23

§

MacOsCLI = 24

§

LinuxCLI = 25

Trait Implementations§

§

impl Clone for DeviceType

§

fn clone(&self) -> DeviceType

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<UT> ConvertError<UT> for DeviceType

§

fn try_convert_unexpected_callback_error( e: UnexpectedUniFFICallbackError, ) -> Result<DeviceType, Error>

§

impl Debug for DeviceType

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for DeviceType

§

fn deserialize<__D>( __deserializer: __D, ) -> Result<DeviceType, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl<UT> FfiConverter<UT> for DeviceType

§

const TYPE_ID_META: MetadataBuffer = _

Type ID metadata, serialized into a [MetadataBuffer].
§

type FfiType = RustBuffer

The low-level type used for passing values of this type over the FFI. Read more
§

fn lower(v: DeviceType) -> RustBuffer

Lower a rust value of the target type, into an FFI value of type Self::FfiType. Read more
§

fn try_lift(buf: RustBuffer) -> Result<DeviceType, Error>

Lift a rust value of the target type, from an FFI value of type Self::FfiType. Read more
§

fn write(obj: DeviceType, buf: &mut Vec<u8>)

Write a rust value into a buffer, to send over the FFI in serialized form. Read more
§

fn try_read(buf: &mut &[u8]) -> Result<DeviceType, Error>

Read a rust value from a buffer, received over the FFI in serialized form. Read more
§

impl From<DeviceType> for JsValue

§

fn from(value: DeviceType) -> JsValue

Converts to this type from the input type.
§

impl FromWasmAbi for DeviceType

§

type Abi = <JsType as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary.
§

unsafe fn from_abi(js: <DeviceType as FromWasmAbi>::Abi) -> DeviceType

Recover a Self from Self::Abi. Read more
§

impl IntoWasmAbi for DeviceType

§

type Abi = <JsType as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary.
§

fn into_abi(self) -> <DeviceType as IntoWasmAbi>::Abi

Convert self into Self::Abi so that it can be sent across the wasm ABI boundary.
§

impl JsonSchema for DeviceType

§

fn schema_name() -> String

The name of the generated JSON Schema. Read more
§

fn schema_id() -> Cow<'static, str>

Returns a string that uniquely identifies the schema produced by this type. Read more
§

fn json_schema(gen: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
§

fn is_referenceable() -> bool

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
§

impl<UT> Lift<UT> for DeviceType

§

type FfiType = <DeviceType as FfiConverter<UT>>::FfiType

§

fn try_lift(v: <DeviceType as Lift<UT>>::FfiType) -> Result<DeviceType, Error>

§

fn try_read(buf: &mut &[u8]) -> Result<DeviceType, Error>

§

fn try_lift_from_rust_buffer(v: RustBuffer) -> Result<Self, Error>

Convenience method
§

impl<UT> LiftRef<UT> for DeviceType

§

impl<UT> LiftReturn<UT> for DeviceType

§

type ReturnType = <DeviceType as Lift<UT>>::FfiType

FFI return type for trait interfaces
§

fn try_lift_successful_return( v: <DeviceType as LiftReturn<UT>>::ReturnType, ) -> Result<DeviceType, Error>

Lift a successfully returned value from a trait interface
§

fn lift_foreign_return( ffi_return: Self::ReturnType, call_status: RustCallStatus, ) -> Self

Lift a foreign returned value from a trait interface Read more
§

fn lift_error(_buf: RustBuffer) -> Self

Lift a Rust value for a callback interface method error result Read more
§

fn handle_callback_unexpected_error(e: UnexpectedUniFFICallbackError) -> Self

Lift a Rust value for an unexpected callback interface error Read more
§

impl<UT> Lower<UT> for DeviceType

§

type FfiType = <DeviceType as FfiConverter<UT>>::FfiType

§

fn lower(obj: DeviceType) -> <DeviceType as Lower<UT>>::FfiType

§

fn write(obj: DeviceType, buf: &mut Vec<u8>)

§

fn lower_into_rust_buffer(obj: Self) -> RustBuffer

Convenience method
§

impl<UT> LowerError<UT> for DeviceType

§

fn lower_error(obj: DeviceType) -> RustBuffer

Lower this value for scaffolding function return Read more
§

impl<UT> LowerReturn<UT> for DeviceType

§

type ReturnType = <DeviceType as Lower<UT>>::FfiType

The type that should be returned by scaffolding functions for this type. Read more
§

fn lower_return( v: DeviceType, ) -> Result<<DeviceType as LowerReturn<UT>>::ReturnType, RustCallError>

Lower the return value from an scaffolding call Read more
§

fn handle_failed_lift( error: LiftArgsError, ) -> Result<Self::ReturnType, RustCallError>

Lower the return value for failed argument lifts Read more
§

impl OptionFromWasmAbi for DeviceType

§

fn is_none(js: &<DeviceType as FromWasmAbi>::Abi) -> bool

Tests whether the argument is a “none” instance. If so it will be deserialized as None, and otherwise it will be passed to FromWasmAbi.
§

impl OptionIntoWasmAbi for DeviceType

§

fn none() -> <DeviceType as IntoWasmAbi>::Abi

Returns an ABI instance indicating “none”, which JS will interpret as the None branch of this option. Read more
§

impl RefFromWasmAbi for DeviceType

§

type Abi = <JsType as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.
§

type Anchor = SelfOwner<DeviceType>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don’t persist beyond one function call, and so that they remain anonymous.
§

unsafe fn ref_from_abi( js: <DeviceType as RefFromWasmAbi>::Abi, ) -> <DeviceType as RefFromWasmAbi>::Anchor

Recover a Self::Anchor from Self::Abi. Read more
§

impl Serialize for DeviceType

§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl Tsify for DeviceType

§

const DECL: &'static str = "export type DeviceType = \"Android\" | \"iOS\" | \"ChromeExtension\" | \"FirefoxExtension\" | \"OperaExtension\" | \"EdgeExtension\" | \"WindowsDesktop\" | \"MacOsDesktop\" | \"LinuxDesktop\" | \"ChromeBrowser\" | \"FirefoxBrowser\" | \"OperaBrowser\" | \"EdgeBrowser\" | \"IEBrowser\" | \"UnknownBrowser\" | \"AndroidAmazon\" | \"UWP\" | \"SafariBrowser\" | \"VivaldiBrowser\" | \"VivaldiExtension\" | \"SafariExtension\" | \"SDK\" | \"Server\" | \"WindowsCLI\" | \"MacOsCLI\" | \"LinuxCLI\";"

§

const SERIALIZATION_CONFIG: SerializationConfig = _

§

type JsType = JsType

§

fn into_js(&self) -> Result<Self::JsType, Error>
where Self: Serialize,

§

fn from_js<T>(js: T) -> Result<Self, Error>
where T: Into<JsValue>, Self: DeserializeOwned,

§

impl<UT> TypeId<UT> for DeviceType

§

const TYPE_ID_META: MetadataBuffer = _

§

impl VectorFromWasmAbi for DeviceType

§

type Abi = <JsType as VectorFromWasmAbi>::Abi

§

unsafe fn vector_from_abi( js: <DeviceType as VectorFromWasmAbi>::Abi, ) -> Box<[DeviceType]>

§

impl VectorIntoWasmAbi for DeviceType

§

impl Copy for DeviceType

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> CompatExt for T

§

fn compat(self) -> Compat<T>

Applies the [Compat] adapter by value. Read more
§

fn compat_ref(&self) -> Compat<&T>

Applies the [Compat] adapter by shared reference. Read more
§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the [Compat] adapter by mutable reference. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, UT> HandleAlloc<UT> for T
where T: Send + Sync,

§

fn new_handle(value: Arc<T>) -> Handle

Create a new handle for an Arc value Read more
§

unsafe fn clone_handle(handle: Handle) -> Handle

Clone a handle Read more
§

unsafe fn consume_handle(handle: Handle) -> Arc<T>

Consume a handle, getting back the initial Arc<> Read more
§

unsafe fn get_arc(handle: Handle) -> Arc<Self>

Get a clone of the Arc<> using a “borrowed” handle. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ReturnWasmAbi for T
where T: IntoWasmAbi,

source§

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi
source§

fn return_abi(self) -> <T as ReturnWasmAbi>::Abi

Same as IntoWasmAbi::into_abi, except that it may throw and never return in the case of Err.
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,