Docs.rs
statsig-rust-0.10.0
statsig-rust 0.10.0
Permalink
Docs.rs crate page
ISC
Links
Homepage
Repository
crates.io
Source
Owners
daniel-statsig
samantha-statsig
Dependencies
ahash ^0.8.11
normal
arc-swap ^1.7.1
normal
async-trait ^0.1.81
normal
base64 ^0.22.1
normal
chrono ^0.4.40
normal
dashmap ^6.1.0
normal
file-guard ^0.2.0
normal
flate2 ^1.0.35
normal
futures ^0.3.30
normal
lazy-regex ^3.4.1
normal
lazy_static ^1.5.0
normal
log ^0.4.22
normal
parking_lot ^0.12.1
normal
percent-encoding ^2.3.1
normal
rand ^0.8.4
normal
regex ^1.10
normal
reqwest ^0.12.14
normal
optional
serde ^1.0.204
normal
serde_derive ^1.0.204
normal
serde_json ^1.0.143
normal
serde_with ^3.4.0
normal
sha2 ^0.10.8
normal
sigstat-grpc ^0.10.0
normal
optional
simple_logger ^5.0.0
normal
tempfile ^3.8.1
normal
tokio ^1.39.1
normal
uaparser ^0.6.4
normal
uuid ^1.10.0
normal
zstd ^0.13.2
normal
assert-json-diff ^2.0.2
dev
libc ^0.2
dev
mockito ^1.5.0
dev
more-asserts ^0.3.1
dev
serial_test ^3.2.0
dev
wiremock ^0.6.2
dev
libc ^0.2
normal
Versions
0.43%
of the crate is documented
Platform
i686-unknown-linux-gnu
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
IntoOptional
statsig_
rust
0.10.0
Into
Optional
Required Methods
into_optional
Implementations on Foreign Types
&T
&str
Option<&T>
Option<&str>
Option<T>
Implementors
In statsig_
rust::
user::
into_
optional
statsig_rust
::
user
::
into_optional
Trait
Into
Optional
Copy item path
Source
pub trait IntoOptional<T> { // Required method fn
into_optional
(self) ->
Option
<T>; }
Required Methods
§
Source
fn
into_optional
(self) ->
Option
<T>
Implementations on Foreign Types
§
Source
§
impl
IntoOptional
<
String
> for &
str
Source
§
fn
into_optional
(self) ->
Option
<
String
>
Source
§
impl
IntoOptional
<
String
> for
Option
<&
str
>
Source
§
fn
into_optional
(self) ->
Option
<
String
>
Source
§
impl<T>
IntoOptional
<T> for
Option
<T>
Source
§
fn
into_optional
(self) ->
Option
<T>
Source
§
impl<T:
Clone
>
IntoOptional
<T> for
Option
<
&T
>
Source
§
fn
into_optional
(self) ->
Option
<T>
Source
§
impl<T:
Clone
>
IntoOptional
<T> for
&T
Source
§
fn
into_optional
(self) ->
Option
<T>
Implementors
§
Source
§
impl<T>
IntoOptional
<T> for T