Docs.rs
  • radix-rust-1.3.0
    • radix-rust 1.3.0
    • Docs.rs crate page
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • radixbot
    • Dependencies
      • hashbrown ^0.13.2 normal optional
      • indexmap ^2.2.5 normal
      • serde ^1.0.144 normal optional
    • Versions
    • 39.55% of the crate is documented
  • 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
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

Crate radix_rust

radix_rust1.3.0

  • All Items

Crate Items

  • Modules
  • Macros
  • Structs
  • Traits
  • Functions

Crates

  • radix_rust

Crate radix_rust

Source

Modules§

iterators
prelude
Each module should have its own prelude, which:
rust

Macros§

assert_matches
Attempts to be a replacement for assert!(matches!(...)) but with better error messages, and allowing further code on success.
btreemap
btreeset
hashmap
hashset
indexmap
indexset
labelled_resolvable_using_resolvable_impl
labelled_resolvable_with_identity_impl
resolvable_with_identity_impl
resolvable_with_try_into_impls

Structs§

ContextDisplayable

Traits§

ContextualDisplay
This trait is used where context is required to correctly display a value.
ContextualTryFrom
ContextualTryInto
LabelResolver
LabelledResolvable
LabelledResolvable is a marker trait, serving a few purposes:
LabelledResolve
This trait is intended to be used as an impl argument in helper methods, to accept a wider range of arguments.
LabelledResolveFrom
The inverse trait of LabelledResolve.
Resolvable
Resolvable is a marker trait, mainly to make resolution opt-in and to avoid polluting every type with a resolve method.
Resolve
This trait is intended to be used as an impl argument in helper methods, to accept a wider range of arguments.
ResolveFrom
The inverse trait of Resolve.

Functions§

combine
Combines a u8 with a u8 slice.
copy_u8_array
Copies a slice to a fixed-sized array.

Results

Settings
Help
    module
    radix_rust::rust::sync
    Useful synchronization primitives.
    trait
    radix_rust::rust::marker::Sync
    Types for which it is safe to share references between …
    struct
    radix_rust::rust::sync::mpsc::SyncSender
    The sending-half of Rust’s synchronous sync_channel type.
    function
    radix_rust::rust::sync::mpmc::sync_channel
    Creates a new synchronous, bounded channel.
    function
    radix_rust::rust::sync::mpsc::sync_channel
    Creates a new synchronous, bounded channel.
    struct
    radix_rust::rust::cell::SyncUnsafeCell
    UnsafeCell, but Sync.
    trait
    radix_rust::rust::ops::AsyncFn
    An async-aware version of the Fn trait.
    trait method
    radix_rust::rust::ops::AsyncFn::async_call
    Call the AsyncFn, returning a future which may borrow from …
    method
    radix_rust::rust::prelude::Box::async_call
    trait
    radix_rust::rust::ops::AsyncFnMut
    An async-aware version of the FnMut trait.
    trait
    radix_rust::rust::ops::AsyncFnOnce
    An async-aware version of the FnOnce trait.
    trait method
    radix_rust::rust::ops::AsyncFnMut::async_call_mut
    Call the AsyncFnMut, returning a future which may borrow …
    method
    radix_rust::rust::prelude::Box::async_call_mut
    trait method
    radix_rust::rust::ops::AsyncFnOnce::async_call_once
    Call the AsyncFnOnce, returning a future which may move …
    method
    radix_rust::rust::prelude::Box::async_call_once
    method
    radix_rust::rust::prelude::Box::into_async_iter
    method
    radix_rust::rust::prelude::Box::from
    E -> Box<Error>
    where
    E: Error + Send + Sync
    Converts a type of Error + Send + Sync into a box of dyn …
    method
    radix_rust::rust::prelude::Arc::downcast_unchecked
    Arc<Any, A> -> Arc<T, A>
    where
    T: Any + Send + Sync
    Downcasts the Arc<dyn Any + Send + Sync> to a concrete …
    method
    radix_rust::rust::prelude::Arc::downcast
    Arc<Any, A> -> Result<Arc<T, A>, Arc<Any, A>>
    where
    T: Any + Send + Sync
    Attempts to downcast the Arc<dyn Any + Send + Sync> to a …