Docs.rs
workflow-log-0.1.0
workflow-log 0.1.0
Docs.rs crate page
Apache-2.0
/
MIT
Links
Repository
crates.io
Source
Owners
aspect
surinder83singh
Dependencies
cfg-if ^1.0.0
normal
console ^0.15.0
normal
downcast ^0.11.0
normal
hexplay ^0.2.1
normal
lazy_static ^1.4.0
normal
log ^0.4.17
normal
wasm-bindgen ^0.2.79
normal
solana-program ^1.14.1
normal
Versions
30%
of the crate is documented
Go to latest version
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
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
☰
Sink
Required Methods
write
Methods
downcast
downcast_arc
downcast_mut
downcast_rc
downcast_ref
is
Trait Implementations
Downcast<_T>
DowncastSync<_T>
Implementors
In workflow_log
?
Trait
workflow_log
::
Sink
source
·
[
−
]
pub trait Sink:
AnySync
{ fn
write
(&self, level:
Level
, args: &
Arguments
<'_>) ->
bool
; }
Required Methods
source
fn
write
(&self, level:
Level
, args: &
Arguments
<'_>) ->
bool
Implementations
source
impl dyn
Sink
source
pub fn
is
<_T>(&self) ->
bool
where
_T:
Any
,
Self:
Downcast
<_T>,
source
pub fn
downcast_ref
<_T>(&self) ->
Result
<
&
_T,
TypeMismatch
>
where
_T:
Any
,
Self:
Downcast
<_T>,
source
pub fn
downcast_mut
<_T>(&mut self) ->
Result
<
&mut
_T,
TypeMismatch
>
where
_T:
Any
,
Self:
Downcast
<_T>,
source
pub fn
downcast
<_T>(
self:
Box
<Self>
) ->
Result
<
Box
<_T>,
DowncastError
<
Box
<Self>>>
where
_T:
Any
,
Self:
Downcast
<_T>,
source
pub fn
downcast_rc
<_T>(
self:
Rc
<Self>
) ->
Result
<
Rc
<_T>,
DowncastError
<
Rc
<Self>>>
where
_T:
Any
,
Self:
Downcast
<_T>,
source
pub fn
downcast_arc
<_T>(
self:
Arc
<Self>
) ->
Result
<
Arc
<_T>,
DowncastError
<
Arc
<Self>>>
where
_T:
AnySync
,
Self:
DowncastSync
<_T>,
Trait Implementations
source
impl<_T>
Downcast
<_T> for dyn
Sink
where
_T:
Any
,
source
fn
is_type
(&self) ->
bool
source
fn
downcast_ref
(&self) ->
Result
<
&
T,
TypeMismatch
>
source
fn
downcast_mut
(&mut self) ->
Result
<
&mut
T,
TypeMismatch
>
source
fn
downcast
(
self:
Box
<Self,
Global
>
) ->
Result
<
Box
<T,
Global
>,
DowncastError
<
Box
<Self,
Global
>>>
source
fn
downcast_rc
(self:
Rc
<Self>) ->
Result
<
Rc
<T>,
DowncastError
<
Rc
<Self>>>
source
impl<_T>
DowncastSync
<_T> for dyn
Sink
where
_T:
AnySync
,
source
fn
downcast_arc
(self:
Arc
<Self>) ->
Result
<
Arc
<T>,
DowncastError
<
Arc
<Self>>>
Implementors