pub struct Arc<T, A = Global>{
ptr: NonNull<ArcInner<T>>,
phantom: PhantomData<ArcInner<T>>,
alloc: A,
}Expand description
A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
The type Arc<T> provides shared ownership of a value of type T,
allocated in the heap. Invoking clone on Arc produces
a new Arc instance, which points to the same allocation on the heap as the
source Arc, while increasing a reference count. When the last Arc
pointer to a given allocation is destroyed, the value stored in that allocation (often
referred to as “inner value”) is also dropped.
Shared references in Rust disallow mutation by default, and Arc is no
exception: you cannot generally obtain a mutable reference to something
inside an Arc. If you do need to mutate through an Arc, you have several options:
-
Use interior mutability with synchronization primitives like
Mutex,RwLock, or one of theAtomictypes. -
Use clone-on-write semantics with
Arc::make_mutwhich provides efficient mutation without requiring interior mutability. This approach clones the data only when needed (when there are multiple references) and can be more efficient when mutations are infrequent. -
Use
Arc::get_mutwhen you know yourArcis not shared (has a reference count of 1), which provides direct mutable access to the inner value without any cloning.
use std::sync::Arc;
let mut data = Arc::new(vec![1, 2, 3]);
// This will clone the vector only if there are other references to it
Arc::make_mut(&mut data).push(4);
assert_eq!(*data, vec![1, 2, 3, 4]);Note: This type is only available on platforms that support atomic
loads and stores of pointers, which includes all platforms that support
the std crate but not all those which only support alloc.
This may be detected at compile time using #[cfg(target_has_atomic = "ptr")].
§Thread Safety
Unlike Rc<T>, Arc<T> uses atomic operations for its reference
counting. This means that it is thread-safe. The disadvantage is that
atomic operations are more expensive than ordinary memory accesses. If you
are not sharing reference-counted allocations between threads, consider using
Rc<T> for lower overhead. Rc<T> is a safe default, because the
compiler will catch any attempt to send an Rc<T> between threads.
However, a library might choose Arc<T> in order to give library consumers
more flexibility.
Arc<T> will implement Send and Sync as long as the T implements
Send and Sync. Why can’t you put a non-thread-safe type T in an
Arc<T> to make it thread-safe? This may be a bit counter-intuitive at
first: after all, isn’t the point of Arc<T> thread safety? The key is
this: Arc<T> makes it thread safe to have multiple ownership of the same
data, but it doesn’t add thread safety to its data. Consider
Arc<RefCell<T>>. RefCell<T> isn’t Sync, and if Arc<T> was always
Send, Arc<RefCell<T>> would be as well. But then we’d have a problem:
RefCell<T> is not thread safe; it keeps track of the borrowing count using
non-atomic operations.
In the end, this means that you may need to pair Arc<T> with some sort of
std::sync type, usually Mutex<T>.
§Breaking cycles with Weak
The downgrade method can be used to create a non-owning
Weak pointer. A Weak pointer can be upgraded
to an Arc, but this will return None if the value stored in the allocation has
already been dropped. In other words, Weak pointers do not keep the value
inside the allocation alive; however, they do keep the allocation
(the backing store for the value) alive.
A cycle between Arc pointers will never be deallocated. For this reason,
Weak is used to break cycles. For example, a tree could have
strong Arc pointers from parent nodes to children, and Weak
pointers from children back to their parents.
§Cloning references
Creating a new reference from an existing reference-counted pointer is done using the
Clone trait implemented for Arc<T> and Weak<T>.
use std::sync::Arc;
let foo = Arc::new(vec![1.0, 2.0, 3.0]);
// The two syntaxes below are equivalent.
let a = foo.clone();
let b = Arc::clone(&foo);
// a, b, and foo are all Arcs that point to the same memory location§Deref behavior
Arc<T> automatically dereferences to T (via the Deref trait),
so you can call T’s methods on a value of type Arc<T>. To avoid name
clashes with T’s methods, the methods of Arc<T> itself are associated
functions, called using fully qualified syntax:
use std::sync::Arc;
let my_arc = Arc::new(());
let my_weak = Arc::downgrade(&my_arc);Arc<T>’s implementations of traits like Clone may also be called using
fully qualified syntax. Some people prefer to use fully qualified syntax,
while others prefer using method-call syntax.
use std::sync::Arc;
let arc = Arc::new(());
// Method-call syntax
let arc2 = arc.clone();
// Fully qualified syntax
let arc3 = Arc::clone(&arc);Weak<T> does not auto-dereference to T, because the inner value may have
already been dropped.
§Examples
Sharing some immutable data between threads:
use std::sync::Arc;
use std::thread;
let five = Arc::new(5);
for _ in 0..10 {
let five = Arc::clone(&five);
thread::spawn(move || {
println!("{five:?}");
});
}Sharing a mutable AtomicUsize:
use std::sync::Arc;
use std::sync::atomic::{AtomicUsize, Ordering};
use std::thread;
let val = Arc::new(AtomicUsize::new(5));
for _ in 0..10 {
let val = Arc::clone(&val);
thread::spawn(move || {
let v = val.fetch_add(1, Ordering::Relaxed);
println!("{v:?}");
});
}See the rc documentation for more examples of reference
counting in general.
Fields§
§ptr: NonNull<ArcInner<T>>§phantom: PhantomData<ArcInner<T>>§alloc: AImplementations§
Source§impl<T> Arc<T>
impl<T> Arc<T>
1.60.0 · Sourcepub fn new_cyclic<F>(data_fn: F) -> Arc<T>
pub fn new_cyclic<F>(data_fn: F) -> Arc<T>
Constructs a new Arc<T> while giving you a Weak<T> to the allocation,
to allow you to construct a T which holds a weak pointer to itself.
Generally, a structure circularly referencing itself, either directly or
indirectly, should not hold a strong reference to itself to prevent a memory leak.
Using this function, you get access to the weak pointer during the
initialization of T, before the Arc<T> is created, such that you can
clone and store it inside the T.
new_cyclic first allocates the managed allocation for the Arc<T>,
then calls your closure, giving it a Weak<T> to this allocation,
and only afterwards completes the construction of the Arc<T> by placing
the T returned from your closure into the allocation.
Since the new Arc<T> is not fully-constructed until Arc<T>::new_cyclic
returns, calling upgrade on the weak reference inside your closure will
fail and result in a None value.
§Panics
If data_fn panics, the panic is propagated to the caller, and the
temporary Weak<T> is dropped normally.
§Example
use std::sync::{Arc, Weak};
struct Gadget {
me: Weak<Gadget>,
}
impl Gadget {
/// Constructs a reference counted Gadget.
fn new() -> Arc<Self> {
// `me` is a `Weak<Gadget>` pointing at the new allocation of the
// `Arc` we're constructing.
Arc::new_cyclic(|me| {
// Create the actual struct here.
Gadget { me: me.clone() }
})
}
/// Returns a reference counted pointer to Self.
fn me(&self) -> Arc<Self> {
self.me.upgrade().unwrap()
}
}1.82.0 · Sourcepub fn new_uninit() -> Arc<MaybeUninit<T>>
pub fn new_uninit() -> Arc<MaybeUninit<T>>
Constructs a new Arc with uninitialized contents.
§Examples
use std::sync::Arc;
let mut five = Arc::<u32>::new_uninit();
// Deferred initialization:
Arc::get_mut(&mut five).unwrap().write(5);
let five = unsafe { five.assume_init() };
assert_eq!(*five, 5)1.92.0 · Sourcepub fn new_zeroed() -> Arc<MaybeUninit<T>>
pub fn new_zeroed() -> Arc<MaybeUninit<T>>
Constructs a new Arc with uninitialized contents, with the memory
being filled with 0 bytes.
See MaybeUninit::zeroed for examples of correct and incorrect usage
of this method.
§Examples
use std::sync::Arc;
let zero = Arc::<u32>::new_zeroed();
let zero = unsafe { zero.assume_init() };
assert_eq!(*zero, 0)1.33.0 · Sourcepub fn pin(data: T) -> Pin<Arc<T>>
pub fn pin(data: T) -> Pin<Arc<T>>
Constructs a new Pin<Arc<T>>. If T does not implement Unpin, then
data will be pinned in memory and unable to be moved.
Sourcepub fn try_pin(data: T) -> Result<Pin<Arc<T>>, AllocError>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn try_pin(data: T) -> Result<Pin<Arc<T>>, AllocError>
allocator_api)Constructs a new Pin<Arc<T>>, return an error if allocation fails.
Sourcepub fn try_new(data: T) -> Result<Arc<T>, AllocError>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn try_new(data: T) -> Result<Arc<T>, AllocError>
allocator_api)Constructs a new Arc<T>, returning an error if allocation fails.
§Examples
#![feature(allocator_api)]
use std::sync::Arc;
let five = Arc::try_new(5)?;Sourcepub fn try_new_uninit() -> Result<Arc<MaybeUninit<T>>, AllocError>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn try_new_uninit() -> Result<Arc<MaybeUninit<T>>, AllocError>
allocator_api)Constructs a new Arc with uninitialized contents, returning an error
if allocation fails.
§Examples
#![feature(allocator_api)]
use std::sync::Arc;
let mut five = Arc::<u32>::try_new_uninit()?;
// Deferred initialization:
Arc::get_mut(&mut five).unwrap().write(5);
let five = unsafe { five.assume_init() };
assert_eq!(*five, 5);Sourcepub fn try_new_zeroed() -> Result<Arc<MaybeUninit<T>>, AllocError>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn try_new_zeroed() -> Result<Arc<MaybeUninit<T>>, AllocError>
allocator_api)Constructs a new Arc with uninitialized contents, with the memory
being filled with 0 bytes, returning an error if allocation fails.
See MaybeUninit::zeroed for examples of correct and incorrect usage
of this method.
§Examples
#![feature( allocator_api)]
use std::sync::Arc;
let zero = Arc::<u32>::try_new_zeroed()?;
let zero = unsafe { zero.assume_init() };
assert_eq!(*zero, 0);Source§impl<T, A> Arc<T, A>where
A: Allocator,
impl<T, A> Arc<T, A>where
A: Allocator,
Sourcepub fn new_in(data: T, alloc: A) -> Arc<T, A>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn new_in(data: T, alloc: A) -> Arc<T, A>
allocator_api)Constructs a new Arc<T> in the provided allocator.
§Examples
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let five = Arc::new_in(5, System);Sourcepub fn new_uninit_in(alloc: A) -> Arc<MaybeUninit<T>, A>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn new_uninit_in(alloc: A) -> Arc<MaybeUninit<T>, A>
allocator_api)Constructs a new Arc with uninitialized contents in the provided allocator.
§Examples
#![feature(get_mut_unchecked)]
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let mut five = Arc::<u32, _>::new_uninit_in(System);
let five = unsafe {
// Deferred initialization:
Arc::get_mut_unchecked(&mut five).as_mut_ptr().write(5);
five.assume_init()
};
assert_eq!(*five, 5)Sourcepub fn new_zeroed_in(alloc: A) -> Arc<MaybeUninit<T>, A>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn new_zeroed_in(alloc: A) -> Arc<MaybeUninit<T>, A>
allocator_api)Constructs a new Arc with uninitialized contents, with the memory
being filled with 0 bytes, in the provided allocator.
See MaybeUninit::zeroed for examples of correct and incorrect usage
of this method.
§Examples
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let zero = Arc::<u32, _>::new_zeroed_in(System);
let zero = unsafe { zero.assume_init() };
assert_eq!(*zero, 0)Sourcepub fn new_cyclic_in<F>(data_fn: F, alloc: A) -> Arc<T, A>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn new_cyclic_in<F>(data_fn: F, alloc: A) -> Arc<T, A>
allocator_api)Constructs a new Arc<T, A> in the given allocator while giving you a Weak<T, A> to the allocation,
to allow you to construct a T which holds a weak pointer to itself.
Generally, a structure circularly referencing itself, either directly or
indirectly, should not hold a strong reference to itself to prevent a memory leak.
Using this function, you get access to the weak pointer during the
initialization of T, before the Arc<T, A> is created, such that you can
clone and store it inside the T.
new_cyclic_in first allocates the managed allocation for the Arc<T, A>,
then calls your closure, giving it a Weak<T, A> to this allocation,
and only afterwards completes the construction of the Arc<T, A> by placing
the T returned from your closure into the allocation.
Since the new Arc<T, A> is not fully-constructed until Arc<T, A>::new_cyclic_in
returns, calling upgrade on the weak reference inside your closure will
fail and result in a None value.
§Panics
If data_fn panics, the panic is propagated to the caller, and the
temporary Weak<T> is dropped normally.
§Example
See new_cyclic
Sourcepub fn pin_in(data: T, alloc: A) -> Pin<Arc<T, A>>where
A: 'static,
🔬This is a nightly-only experimental API. (allocator_api)
pub fn pin_in(data: T, alloc: A) -> Pin<Arc<T, A>>where
A: 'static,
allocator_api)Constructs a new Pin<Arc<T, A>> in the provided allocator. If T does not implement Unpin,
then data will be pinned in memory and unable to be moved.
Sourcepub fn try_pin_in(data: T, alloc: A) -> Result<Pin<Arc<T, A>>, AllocError>where
A: 'static,
🔬This is a nightly-only experimental API. (allocator_api)
pub fn try_pin_in(data: T, alloc: A) -> Result<Pin<Arc<T, A>>, AllocError>where
A: 'static,
allocator_api)Constructs a new Pin<Arc<T, A>> in the provided allocator, return an error if allocation
fails.
Sourcepub fn try_new_in(data: T, alloc: A) -> Result<Arc<T, A>, AllocError>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn try_new_in(data: T, alloc: A) -> Result<Arc<T, A>, AllocError>
allocator_api)Constructs a new Arc<T, A> in the provided allocator, returning an error if allocation fails.
§Examples
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let five = Arc::try_new_in(5, System)?;Sourcepub fn try_new_uninit_in(alloc: A) -> Result<Arc<MaybeUninit<T>, A>, AllocError>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn try_new_uninit_in(alloc: A) -> Result<Arc<MaybeUninit<T>, A>, AllocError>
allocator_api)Constructs a new Arc with uninitialized contents, in the provided allocator, returning an
error if allocation fails.
§Examples
#![feature(allocator_api)]
#![feature(get_mut_unchecked)]
use std::sync::Arc;
use std::alloc::System;
let mut five = Arc::<u32, _>::try_new_uninit_in(System)?;
let five = unsafe {
// Deferred initialization:
Arc::get_mut_unchecked(&mut five).as_mut_ptr().write(5);
five.assume_init()
};
assert_eq!(*five, 5);Sourcepub fn try_new_zeroed_in(alloc: A) -> Result<Arc<MaybeUninit<T>, A>, AllocError>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn try_new_zeroed_in(alloc: A) -> Result<Arc<MaybeUninit<T>, A>, AllocError>
allocator_api)Constructs a new Arc with uninitialized contents, with the memory
being filled with 0 bytes, in the provided allocator, returning an error if allocation
fails.
See MaybeUninit::zeroed for examples of correct and incorrect usage
of this method.
§Examples
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let zero = Arc::<u32, _>::try_new_zeroed_in(System)?;
let zero = unsafe { zero.assume_init() };
assert_eq!(*zero, 0);1.4.0 · Sourcepub fn try_unwrap(this: Arc<T, A>) -> Result<T, Arc<T, A>>
pub fn try_unwrap(this: Arc<T, A>) -> Result<T, Arc<T, A>>
Returns the inner value, if the Arc has exactly one strong reference.
Otherwise, an Err is returned with the same Arc that was
passed in.
This will succeed even if there are outstanding weak references.
It is strongly recommended to use Arc::into_inner instead if you don’t
keep the Arc in the Err case.
Immediately dropping the Err-value, as the expression
Arc::try_unwrap(this).ok() does, can cause the strong count to
drop to zero and the inner value of the Arc to be dropped.
For instance, if two threads execute such an expression in parallel,
there is a race condition without the possibility of unsafety:
The threads could first both check whether they own the last instance
in Arc::try_unwrap, determine that they both do not, and then both
discard and drop their instance in the call to ok.
In this scenario, the value inside the Arc is safely destroyed
by exactly one of the threads, but neither thread will ever be able
to use the value.
§Examples
use std::sync::Arc;
let x = Arc::new(3);
assert_eq!(Arc::try_unwrap(x), Ok(3));
let x = Arc::new(4);
let _y = Arc::clone(&x);
assert_eq!(*Arc::try_unwrap(x).unwrap_err(), 4);1.70.0 · Sourcepub fn into_inner(this: Arc<T, A>) -> Option<T>
pub fn into_inner(this: Arc<T, A>) -> Option<T>
Returns the inner value, if the Arc has exactly one strong reference.
Otherwise, None is returned and the Arc is dropped.
This will succeed even if there are outstanding weak references.
If Arc::into_inner is called on every clone of this Arc,
it is guaranteed that exactly one of the calls returns the inner value.
This means in particular that the inner value is not dropped.
Arc::try_unwrap is conceptually similar to Arc::into_inner, but it
is meant for different use-cases. If used as a direct replacement
for Arc::into_inner anyway, such as with the expression
Arc::try_unwrap(this).ok(), then it does
not give the same guarantee as described in the previous paragraph.
For more information, see the examples below and read the documentation
of Arc::try_unwrap.
§Examples
Minimal example demonstrating the guarantee that Arc::into_inner gives.
use std::sync::Arc;
let x = Arc::new(3);
let y = Arc::clone(&x);
// Two threads calling `Arc::into_inner` on both clones of an `Arc`:
let x_thread = std::thread::spawn(|| Arc::into_inner(x));
let y_thread = std::thread::spawn(|| Arc::into_inner(y));
let x_inner_value = x_thread.join().unwrap();
let y_inner_value = y_thread.join().unwrap();
// One of the threads is guaranteed to receive the inner value:
assert!(matches!(
(x_inner_value, y_inner_value),
(None, Some(3)) | (Some(3), None)
));
// The result could also be `(None, None)` if the threads called
// `Arc::try_unwrap(x).ok()` and `Arc::try_unwrap(y).ok()` instead.A more practical example demonstrating the need for Arc::into_inner:
use std::sync::Arc;
// Definition of a simple singly linked list using `Arc`:
#[derive(Clone)]
struct LinkedList<T>(Option<Arc<Node<T>>>);
struct Node<T>(T, Option<Arc<Node<T>>>);
// Dropping a long `LinkedList<T>` relying on the destructor of `Arc`
// can cause a stack overflow. To prevent this, we can provide a
// manual `Drop` implementation that does the destruction in a loop:
impl<T> Drop for LinkedList<T> {
fn drop(&mut self) {
let mut link = self.0.take();
while let Some(arc_node) = link.take() {
if let Some(Node(_value, next)) = Arc::into_inner(arc_node) {
link = next;
}
}
}
}
// Implementation of `new` and `push` omitted
impl<T> LinkedList<T> {
/* ... */
}
// The following code could have still caused a stack overflow
// despite the manual `Drop` impl if that `Drop` impl had used
// `Arc::try_unwrap(arc).ok()` instead of `Arc::into_inner(arc)`.
// Create a long list and clone it
let mut x = LinkedList::new();
let size = 100000;
for i in 0..size {
x.push(i); // Adds i to the front of x
}
let y = x.clone();
// Drop the clones in parallel
let x_thread = std::thread::spawn(|| drop(x));
let y_thread = std::thread::spawn(|| drop(y));
x_thread.join().unwrap();
y_thread.join().unwrap();Source§impl<T> Arc<[T]>
impl<T> Arc<[T]>
1.82.0 · Sourcepub fn new_uninit_slice(len: usize) -> Arc<[MaybeUninit<T>]>
pub fn new_uninit_slice(len: usize) -> Arc<[MaybeUninit<T>]>
Constructs a new atomically reference-counted slice with uninitialized contents.
§Examples
use std::sync::Arc;
let mut values = Arc::<[u32]>::new_uninit_slice(3);
// Deferred initialization:
let data = Arc::get_mut(&mut values).unwrap();
data[0].write(1);
data[1].write(2);
data[2].write(3);
let values = unsafe { values.assume_init() };
assert_eq!(*values, [1, 2, 3])1.92.0 · Sourcepub fn new_zeroed_slice(len: usize) -> Arc<[MaybeUninit<T>]>
pub fn new_zeroed_slice(len: usize) -> Arc<[MaybeUninit<T>]>
Constructs a new atomically reference-counted slice with uninitialized contents, with the memory being
filled with 0 bytes.
See MaybeUninit::zeroed for examples of correct and
incorrect usage of this method.
§Examples
use std::sync::Arc;
let values = Arc::<[u32]>::new_zeroed_slice(3);
let values = unsafe { values.assume_init() };
assert_eq!(*values, [0, 0, 0])Sourcepub fn into_array<const N: usize>(self) -> Option<Arc<[T; N]>>
🔬This is a nightly-only experimental API. (slice_as_array)
pub fn into_array<const N: usize>(self) -> Option<Arc<[T; N]>>
slice_as_array)Converts the reference-counted slice into a reference-counted array.
This operation does not reallocate; the underlying array of the slice is simply reinterpreted as an array type.
If N is not exactly equal to the length of self, then this method returns None.
Source§impl<T, A> Arc<[T], A>where
A: Allocator,
impl<T, A> Arc<[T], A>where
A: Allocator,
Sourcepub fn new_uninit_slice_in(len: usize, alloc: A) -> Arc<[MaybeUninit<T>], A>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn new_uninit_slice_in(len: usize, alloc: A) -> Arc<[MaybeUninit<T>], A>
allocator_api)Constructs a new atomically reference-counted slice with uninitialized contents in the provided allocator.
§Examples
#![feature(get_mut_unchecked)]
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let mut values = Arc::<[u32], _>::new_uninit_slice_in(3, System);
let values = unsafe {
// Deferred initialization:
Arc::get_mut_unchecked(&mut values)[0].as_mut_ptr().write(1);
Arc::get_mut_unchecked(&mut values)[1].as_mut_ptr().write(2);
Arc::get_mut_unchecked(&mut values)[2].as_mut_ptr().write(3);
values.assume_init()
};
assert_eq!(*values, [1, 2, 3])Sourcepub fn new_zeroed_slice_in(len: usize, alloc: A) -> Arc<[MaybeUninit<T>], A>
🔬This is a nightly-only experimental API. (allocator_api)
pub fn new_zeroed_slice_in(len: usize, alloc: A) -> Arc<[MaybeUninit<T>], A>
allocator_api)Constructs a new atomically reference-counted slice with uninitialized contents, with the memory being
filled with 0 bytes, in the provided allocator.
See MaybeUninit::zeroed for examples of correct and
incorrect usage of this method.
§Examples
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let values = Arc::<[u32], _>::new_zeroed_slice_in(3, System);
let values = unsafe { values.assume_init() };
assert_eq!(*values, [0, 0, 0])Source§impl<T, A> Arc<MaybeUninit<T>, A>where
A: Allocator,
impl<T, A> Arc<MaybeUninit<T>, A>where
A: Allocator,
1.82.0 · Sourcepub unsafe fn assume_init(self) -> Arc<T, A>
pub unsafe fn assume_init(self) -> Arc<T, A>
Converts to Arc<T>.
§Safety
As with MaybeUninit::assume_init,
it is up to the caller to guarantee that the inner value
really is in an initialized state.
Calling this when the content is not yet fully initialized
causes immediate undefined behavior.
§Examples
use std::sync::Arc;
let mut five = Arc::<u32>::new_uninit();
// Deferred initialization:
Arc::get_mut(&mut five).unwrap().write(5);
let five = unsafe { five.assume_init() };
assert_eq!(*five, 5)Source§impl<T, A> Arc<[MaybeUninit<T>], A>where
A: Allocator,
impl<T, A> Arc<[MaybeUninit<T>], A>where
A: Allocator,
1.82.0 · Sourcepub unsafe fn assume_init(self) -> Arc<[T], A>
pub unsafe fn assume_init(self) -> Arc<[T], A>
Converts to Arc<[T]>.
§Safety
As with MaybeUninit::assume_init,
it is up to the caller to guarantee that the inner value
really is in an initialized state.
Calling this when the content is not yet fully initialized
causes immediate undefined behavior.
§Examples
use std::sync::Arc;
let mut values = Arc::<[u32]>::new_uninit_slice(3);
// Deferred initialization:
let data = Arc::get_mut(&mut values).unwrap();
data[0].write(1);
data[1].write(2);
data[2].write(3);
let values = unsafe { values.assume_init() };
assert_eq!(*values, [1, 2, 3])Source§impl<T> Arc<T>where
T: ?Sized,
impl<T> Arc<T>where
T: ?Sized,
1.17.0 · Sourcepub unsafe fn from_raw(ptr: *const T) -> Arc<T>
pub unsafe fn from_raw(ptr: *const T) -> Arc<T>
Constructs an Arc<T> from a raw pointer.
The raw pointer must have been previously returned by a call to
Arc<U>::into_raw with the following requirements:
- If
Uis sized, it must have the same size and alignment asT. This is trivially true ifUisT. - If
Uis unsized, its data pointer must have the same size and alignment asT. This is trivially true ifArc<U>was constructed throughArc<T>and then converted toArc<U>through an unsized coercion.
Note that if U or U’s data pointer is not T but has the same size
and alignment, this is basically like transmuting references of
different types. See mem::transmute for more information
on what restrictions apply in this case.
The raw pointer must point to a block of memory allocated by the global allocator.
The user of from_raw has to make sure a specific value of T is only
dropped once.
This function is unsafe because improper use may lead to memory unsafety,
even if the returned Arc<T> is never accessed.
§Examples
use std::sync::Arc;
let x = Arc::new("hello".to_owned());
let x_ptr = Arc::into_raw(x);
unsafe {
// Convert back to an `Arc` to prevent leak.
let x = Arc::from_raw(x_ptr);
assert_eq!(&*x, "hello");
// Further calls to `Arc::from_raw(x_ptr)` would be memory-unsafe.
}
// The memory was freed when `x` went out of scope above, so `x_ptr` is now dangling!Convert a slice back into its original array:
use std::sync::Arc;
let x: Arc<[u32]> = Arc::new([1, 2, 3]);
let x_ptr: *const [u32] = Arc::into_raw(x);
unsafe {
let x: Arc<[u32; 3]> = Arc::from_raw(x_ptr.cast::<[u32; 3]>());
assert_eq!(&*x, &[1, 2, 3]);
}1.17.0 · Sourcepub fn into_raw(this: Arc<T>) -> *const T
pub fn into_raw(this: Arc<T>) -> *const T
Consumes the Arc, returning the wrapped pointer.
To avoid a memory leak the pointer must be converted back to an Arc using
Arc::from_raw.
§Examples
use std::sync::Arc;
let x = Arc::new("hello".to_owned());
let x_ptr = Arc::into_raw(x);
assert_eq!(unsafe { &*x_ptr }, "hello");1.51.0 · Sourcepub unsafe fn increment_strong_count(ptr: *const T)
pub unsafe fn increment_strong_count(ptr: *const T)
Increments the strong reference count on the Arc<T> associated with the
provided pointer by one.
§Safety
The pointer must have been obtained through Arc::into_raw and must satisfy the
same layout requirements specified in Arc::from_raw_in.
The associated Arc instance must be valid (i.e. the strong count must be at
least 1) for the duration of this method, and ptr must point to a block of memory
allocated by the global allocator.
§Examples
use std::sync::Arc;
let five = Arc::new(5);
unsafe {
let ptr = Arc::into_raw(five);
Arc::increment_strong_count(ptr);
// This assertion is deterministic because we haven't shared
// the `Arc` between threads.
let five = Arc::from_raw(ptr);
assert_eq!(2, Arc::strong_count(&five));
}1.51.0 · Sourcepub unsafe fn decrement_strong_count(ptr: *const T)
pub unsafe fn decrement_strong_count(ptr: *const T)
Decrements the strong reference count on the Arc<T> associated with the
provided pointer by one.
§Safety
The pointer must have been obtained through Arc::into_raw and must satisfy the
same layout requirements specified in Arc::from_raw_in.
The associated Arc instance must be valid (i.e. the strong count must be at
least 1) when invoking this method, and ptr must point to a block of memory
allocated by the global allocator. This method can be used to release the final
Arc and backing storage, but should not be called after the final Arc has been
released.
§Examples
use std::sync::Arc;
let five = Arc::new(5);
unsafe {
let ptr = Arc::into_raw(five);
Arc::increment_strong_count(ptr);
// Those assertions are deterministic because we haven't shared
// the `Arc` between threads.
let five = Arc::from_raw(ptr);
assert_eq!(2, Arc::strong_count(&five));
Arc::decrement_strong_count(ptr);
assert_eq!(1, Arc::strong_count(&five));
}Source§impl<T, A> Arc<T, A>
impl<T, A> Arc<T, A>
Sourcepub fn allocator(this: &Arc<T, A>) -> &A
🔬This is a nightly-only experimental API. (allocator_api)
pub fn allocator(this: &Arc<T, A>) -> &A
allocator_api)Returns a reference to the underlying allocator.
Note: this is an associated function, which means that you have
to call it as Arc::allocator(&a) instead of a.allocator(). This
is so that there is no conflict with a method on the inner type.
Sourcepub fn into_raw_with_allocator(this: Arc<T, A>) -> (*const T, A)
🔬This is a nightly-only experimental API. (allocator_api)
pub fn into_raw_with_allocator(this: Arc<T, A>) -> (*const T, A)
allocator_api)Consumes the Arc, returning the wrapped pointer and allocator.
To avoid a memory leak the pointer must be converted back to an Arc using
Arc::from_raw_in.
§Examples
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let x = Arc::new_in("hello".to_owned(), System);
let (ptr, alloc) = Arc::into_raw_with_allocator(x);
assert_eq!(unsafe { &*ptr }, "hello");
let x = unsafe { Arc::from_raw_in(ptr, alloc) };
assert_eq!(&*x, "hello");1.45.0 · Sourcepub fn as_ptr(this: &Arc<T, A>) -> *const T
pub fn as_ptr(this: &Arc<T, A>) -> *const T
Provides a raw pointer to the data.
The counts are not affected in any way and the Arc is not consumed. The pointer is valid for
as long as there are strong counts in the Arc.
§Examples
use std::sync::Arc;
let x = Arc::new("hello".to_owned());
let y = Arc::clone(&x);
let x_ptr = Arc::as_ptr(&x);
assert_eq!(x_ptr, Arc::as_ptr(&y));
assert_eq!(unsafe { &*x_ptr }, "hello");Sourcepub unsafe fn from_raw_in(ptr: *const T, alloc: A) -> Arc<T, A>
🔬This is a nightly-only experimental API. (allocator_api)
pub unsafe fn from_raw_in(ptr: *const T, alloc: A) -> Arc<T, A>
allocator_api)Constructs an Arc<T, A> from a raw pointer.
The raw pointer must have been previously returned by a call to Arc<U, A>::into_raw with the following requirements:
- If
Uis sized, it must have the same size and alignment asT. This is trivially true ifUisT. - If
Uis unsized, its data pointer must have the same size and alignment asT. This is trivially true ifArc<U>was constructed throughArc<T>and then converted toArc<U>through an unsized coercion.
Note that if U or U’s data pointer is not T but has the same size
and alignment, this is basically like transmuting references of
different types. See mem::transmute for more information
on what restrictions apply in this case.
The raw pointer must point to a block of memory allocated by alloc
The user of from_raw has to make sure a specific value of T is only
dropped once.
This function is unsafe because improper use may lead to memory unsafety,
even if the returned Arc<T> is never accessed.
§Examples
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let x = Arc::new_in("hello".to_owned(), System);
let (x_ptr, alloc) = Arc::into_raw_with_allocator(x);
unsafe {
// Convert back to an `Arc` to prevent leak.
let x = Arc::from_raw_in(x_ptr, System);
assert_eq!(&*x, "hello");
// Further calls to `Arc::from_raw(x_ptr)` would be memory-unsafe.
}
// The memory was freed when `x` went out of scope above, so `x_ptr` is now dangling!Convert a slice back into its original array:
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let x: Arc<[u32], _> = Arc::new_in([1, 2, 3], System);
let x_ptr: *const [u32] = Arc::into_raw_with_allocator(x).0;
unsafe {
let x: Arc<[u32; 3], _> = Arc::from_raw_in(x_ptr.cast::<[u32; 3]>(), System);
assert_eq!(&*x, &[1, 2, 3]);
}1.15.0 · Sourcepub fn weak_count(this: &Arc<T, A>) -> usize
pub fn weak_count(this: &Arc<T, A>) -> usize
Gets the number of Weak pointers to this allocation.
§Safety
This method by itself is safe, but using it correctly requires extra care. Another thread can change the weak count at any time, including potentially between calling this method and acting on the result.
§Examples
use std::sync::Arc;
let five = Arc::new(5);
let _weak_five = Arc::downgrade(&five);
// This assertion is deterministic because we haven't shared
// the `Arc` or `Weak` between threads.
assert_eq!(1, Arc::weak_count(&five));1.15.0 · Sourcepub fn strong_count(this: &Arc<T, A>) -> usize
pub fn strong_count(this: &Arc<T, A>) -> usize
Gets the number of strong (Arc) pointers to this allocation.
§Safety
This method by itself is safe, but using it correctly requires extra care. Another thread can change the strong count at any time, including potentially between calling this method and acting on the result.
§Examples
use std::sync::Arc;
let five = Arc::new(5);
let _also_five = Arc::clone(&five);
// This assertion is deterministic because we haven't shared
// the `Arc` between threads.
assert_eq!(2, Arc::strong_count(&five));Sourcepub unsafe fn increment_strong_count_in(ptr: *const T, alloc: A)where
A: Clone,
🔬This is a nightly-only experimental API. (allocator_api)
pub unsafe fn increment_strong_count_in(ptr: *const T, alloc: A)where
A: Clone,
allocator_api)Increments the strong reference count on the Arc<T> associated with the
provided pointer by one.
§Safety
The pointer must have been obtained through Arc::into_raw and must satisfy the
same layout requirements specified in Arc::from_raw_in.
The associated Arc instance must be valid (i.e. the strong count must be at
least 1) for the duration of this method, and ptr must point to a block of memory
allocated by alloc.
§Examples
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let five = Arc::new_in(5, System);
unsafe {
let (ptr, _alloc) = Arc::into_raw_with_allocator(five);
Arc::increment_strong_count_in(ptr, System);
// This assertion is deterministic because we haven't shared
// the `Arc` between threads.
let five = Arc::from_raw_in(ptr, System);
assert_eq!(2, Arc::strong_count(&five));
}Sourcepub unsafe fn decrement_strong_count_in(ptr: *const T, alloc: A)
🔬This is a nightly-only experimental API. (allocator_api)
pub unsafe fn decrement_strong_count_in(ptr: *const T, alloc: A)
allocator_api)Decrements the strong reference count on the Arc<T> associated with the
provided pointer by one.
§Safety
The pointer must have been obtained through Arc::into_raw and must satisfy the
same layout requirements specified in Arc::from_raw_in.
The associated Arc instance must be valid (i.e. the strong count must be at
least 1) when invoking this method, and ptr must point to a block of memory
allocated by alloc. This method can be used to release the final
Arc and backing storage, but should not be called after the final Arc has been
released.
§Examples
#![feature(allocator_api)]
use std::sync::Arc;
use std::alloc::System;
let five = Arc::new_in(5, System);
unsafe {
let (ptr, _alloc) = Arc::into_raw_with_allocator(five);
Arc::increment_strong_count_in(ptr, System);
// Those assertions are deterministic because we haven't shared
// the `Arc` between threads.
let five = Arc::from_raw_in(ptr, System);
assert_eq!(2, Arc::strong_count(&five));
Arc::decrement_strong_count_in(ptr, System);
assert_eq!(1, Arc::strong_count(&five));
}1.17.0 · Sourcepub fn ptr_eq(this: &Arc<T, A>, other: &Arc<T, A>) -> bool
pub fn ptr_eq(this: &Arc<T, A>, other: &Arc<T, A>) -> bool
Returns true if the two Arcs point to the same allocation in a vein similar to
ptr::eq. This function ignores the metadata of dyn Trait pointers.
§Examples
use std::sync::Arc;
let five = Arc::new(5);
let same_five = Arc::clone(&five);
let other_five = Arc::new(5);
assert!(Arc::ptr_eq(&five, &same_five));
assert!(!Arc::ptr_eq(&five, &other_five));Source§impl<T, A> Arc<T, A>
impl<T, A> Arc<T, A>
1.4.0 · Sourcepub fn make_mut(this: &mut Arc<T, A>) -> &mut T
pub fn make_mut(this: &mut Arc<T, A>) -> &mut T
Makes a mutable reference into the given Arc.
If there are other Arc pointers to the same allocation, then make_mut will
clone the inner value to a new allocation to ensure unique ownership. This is also
referred to as clone-on-write.
However, if there are no other Arc pointers to this allocation, but some Weak
pointers, then the Weak pointers will be dissociated and the inner value will not
be cloned.
See also get_mut, which will fail rather than cloning the inner value
or dissociating Weak pointers.
§Examples
use std::sync::Arc;
let mut data = Arc::new(5);
*Arc::make_mut(&mut data) += 1; // Won't clone anything
let mut other_data = Arc::clone(&data); // Won't clone inner data
*Arc::make_mut(&mut data) += 1; // Clones inner data
*Arc::make_mut(&mut data) += 1; // Won't clone anything
*Arc::make_mut(&mut other_data) *= 2; // Won't clone anything
// Now `data` and `other_data` point to different allocations.
assert_eq!(*data, 8);
assert_eq!(*other_data, 12);Weak pointers will be dissociated:
use std::sync::Arc;
let mut data = Arc::new(75);
let weak = Arc::downgrade(&data);
assert!(75 == *data);
assert!(75 == *weak.upgrade().unwrap());
*Arc::make_mut(&mut data) += 1;
assert!(76 == *data);
assert!(weak.upgrade().is_none());Source§impl<T, A> Arc<T, A>
impl<T, A> Arc<T, A>
1.76.0 · Sourcepub fn unwrap_or_clone(this: Arc<T, A>) -> T
pub fn unwrap_or_clone(this: Arc<T, A>) -> T
If we have the only reference to T then unwrap it. Otherwise, clone T and return the
clone.
Assuming arc_t is of type Arc<T>, this function is functionally equivalent to
(*arc_t).clone(), but will avoid cloning the inner value where possible.
§Examples
let inner = String::from("test");
let ptr = inner.as_ptr();
let arc = Arc::new(inner);
let inner = Arc::unwrap_or_clone(arc);
// The inner value was not cloned
assert!(ptr::eq(ptr, inner.as_ptr()));
let arc = Arc::new(inner);
let arc2 = arc.clone();
let inner = Arc::unwrap_or_clone(arc);
// Because there were 2 references, we had to clone the inner value.
assert!(!ptr::eq(ptr, inner.as_ptr()));
// `arc2` is the last reference, so when we unwrap it we get back
// the original `String`.
let inner = Arc::unwrap_or_clone(arc2);
assert!(ptr::eq(ptr, inner.as_ptr()));Source§impl<T, A> Arc<T, A>
impl<T, A> Arc<T, A>
1.4.0 · Sourcepub fn get_mut(this: &mut Arc<T, A>) -> Option<&mut T>
pub fn get_mut(this: &mut Arc<T, A>) -> Option<&mut T>
Returns a mutable reference into the given Arc, if there are
no other Arc or Weak pointers to the same allocation.
Returns None otherwise, because it is not safe to
mutate a shared value.
See also make_mut, which will clone
the inner value when there are other Arc pointers.
§Examples
use std::sync::Arc;
let mut x = Arc::new(3);
*Arc::get_mut(&mut x).unwrap() = 4;
assert_eq!(*x, 4);
let _y = Arc::clone(&x);
assert!(Arc::get_mut(&mut x).is_none());Sourcepub unsafe fn get_mut_unchecked(this: &mut Arc<T, A>) -> &mut T
🔬This is a nightly-only experimental API. (get_mut_unchecked)
pub unsafe fn get_mut_unchecked(this: &mut Arc<T, A>) -> &mut T
get_mut_unchecked)Returns a mutable reference into the given Arc,
without any check.
See also get_mut, which is safe and does appropriate checks.
§Safety
If any other Arc or Weak pointers to the same allocation exist, then
they must not be dereferenced or have active borrows for the duration
of the returned borrow, and their inner type must be exactly the same as the
inner type of this Arc (including lifetimes). This is trivially the case if no
such pointers exist, for example immediately after Arc::new.
§Examples
#![feature(get_mut_unchecked)]
use std::sync::Arc;
let mut x = Arc::new(String::new());
unsafe {
Arc::get_mut_unchecked(&mut x).push_str("foo")
}
assert_eq!(*x, "foo");Other Arc pointers to the same allocation must be to the same type.
#![feature(get_mut_unchecked)]
use std::sync::Arc;
let x: Arc<str> = Arc::from("Hello, world!");
let mut y: Arc<[u8]> = x.clone().into();
unsafe {
// this is Undefined Behavior, because x's inner type is str, not [u8]
Arc::get_mut_unchecked(&mut y).fill(0xff); // 0xff is invalid in UTF-8
}
println!("{}", &*x); // Invalid UTF-8 in a strOther Arc pointers to the same allocation must be to the exact same type, including lifetimes.
#![feature(get_mut_unchecked)]
use std::sync::Arc;
let x: Arc<&str> = Arc::new("Hello, world!");
{
let s = String::from("Oh, no!");
let mut y: Arc<&str> = x.clone();
unsafe {
// this is Undefined Behavior, because x's inner type
// is &'long str, not &'short str
*Arc::get_mut_unchecked(&mut y) = &s;
}
}
println!("{}", &*x); // Use-after-freeSourcepub fn is_unique(this: &Arc<T, A>) -> bool
🔬This is a nightly-only experimental API. (arc_is_unique)
pub fn is_unique(this: &Arc<T, A>) -> bool
arc_is_unique)Determine whether this is the unique reference to the underlying data.
Returns true if there are no other Arc or Weak pointers to the same allocation;
returns false otherwise.
If this function returns true, then is guaranteed to be safe to call get_mut_unchecked
on this Arc, so long as no clones occur in between.
§Examples
#![feature(arc_is_unique)]
use std::sync::Arc;
let x = Arc::new(3);
assert!(Arc::is_unique(&x));
let y = Arc::clone(&x);
assert!(!Arc::is_unique(&x));
drop(y);
// Weak references also count, because they could be upgraded at any time.
let z = Arc::downgrade(&x);
assert!(!Arc::is_unique(&x));§Pointer invalidation
This function will always return the same value as Arc::get_mut(arc).is_some(). However,
unlike that operation it does not produce any mutable references to the underlying data,
meaning no pointers to the data inside the Arc are invalidated by the call. Thus, the
following code is valid, even though it would be UB if it used Arc::get_mut:
#![feature(arc_is_unique)]
use std::sync::Arc;
let arc = Arc::new(5);
let pointer: *const i32 = &*arc;
assert!(Arc::is_unique(&arc));
assert_eq!(unsafe { *pointer }, 5);§Atomic orderings
Concurrent drops to other Arc pointers to the same allocation will synchronize with this
call - that is, this call performs an Acquire operation on the underlying strong and weak
ref counts. This ensures that calling get_mut_unchecked is safe.
Note that this operation requires locking the weak ref count, so concurrent calls to
downgrade may spin-loop for a short period of time.
Source§impl<A> Arc<dyn Any + Sync + Send, A>where
A: Allocator,
impl<A> Arc<dyn Any + Sync + Send, A>where
A: Allocator,
1.29.0 · Sourcepub fn downcast<T>(self) -> Result<Arc<T, A>, Arc<dyn Any + Sync + Send, A>>
pub fn downcast<T>(self) -> Result<Arc<T, A>, Arc<dyn Any + Sync + Send, A>>
Attempts to downcast the Arc<dyn Any + Send + Sync> to a concrete type.
§Examples
use std::any::Any;
use std::sync::Arc;
fn print_if_string(value: Arc<dyn Any + Send + Sync>) {
if let Ok(string) = value.downcast::<String>() {
println!("String ({}): {}", string.len(), string);
}
}
let my_string = "Hello World".to_string();
print_if_string(Arc::new(my_string));
print_if_string(Arc::new(0i8));Sourcepub unsafe fn downcast_unchecked<T>(self) -> Arc<T, A>
🔬This is a nightly-only experimental API. (downcast_unchecked)
pub unsafe fn downcast_unchecked<T>(self) -> Arc<T, A>
downcast_unchecked)Downcasts the Arc<dyn Any + Send + Sync> to a concrete type.
For a safe alternative see downcast.
§Examples
#![feature(downcast_unchecked)]
use std::any::Any;
use std::sync::Arc;
let x: Arc<dyn Any + Send + Sync> = Arc::new(1_usize);
unsafe {
assert_eq!(*x.downcast_unchecked::<usize>(), 1);
}§Safety
The contained value must be of type T. Calling this method
with the incorrect type is undefined behavior.
Trait Implementations§
§impl<T> Access for Arc<T>where
T: Access + ?Sized,
All functions in Accessor only requires &self, so it’s safe to implement
Accessor for Arc<impl Access>.
impl<T> Access for Arc<T>where
T: Access + ?Sized,
All functions in Accessor only requires &self, so it’s safe to implement
Accessor for Arc<impl Access>.
§type Deleter = <T as Access>::Deleter
type Deleter = <T as Access>::Deleter
delete operation.§type BlockingReader = <T as Access>::BlockingReader
type BlockingReader = <T as Access>::BlockingReader
blocking_read operation.§type BlockingWriter = <T as Access>::BlockingWriter
type BlockingWriter = <T as Access>::BlockingWriter
blocking_write operation.§type BlockingLister = <T as Access>::BlockingLister
type BlockingLister = <T as Access>::BlockingLister
blocking_list operation.§type BlockingDeleter = <T as Access>::BlockingDeleter
type BlockingDeleter = <T as Access>::BlockingDeleter
blocking_delete operation.§fn info(&self) -> Arc<AccessorInfo>
fn info(&self) -> Arc<AccessorInfo>
info operation to get metadata of accessor. Read more§fn create_dir(
&self,
path: &str,
args: OpCreateDir,
) -> impl Future<Output = Result<RpCreateDir, Error>> + MaybeSend
fn create_dir( &self, path: &str, args: OpCreateDir, ) -> impl Future<Output = Result<RpCreateDir, Error>> + MaybeSend
create operation on the specified path Read more§fn stat(
&self,
path: &str,
args: OpStat,
) -> impl Future<Output = Result<RpStat, Error>> + MaybeSend
fn stat( &self, path: &str, args: OpStat, ) -> impl Future<Output = Result<RpStat, Error>> + MaybeSend
stat operation on the specified path. Read more§fn read(
&self,
path: &str,
args: OpRead,
) -> impl Future<Output = Result<(RpRead, <Arc<T> as Access>::Reader), Error>> + MaybeSend
fn read( &self, path: &str, args: OpRead, ) -> impl Future<Output = Result<(RpRead, <Arc<T> as Access>::Reader), Error>> + MaybeSend
read operation on the specified path, returns a
[Reader][crate::Reader] if operate successful. Read more§fn write(
&self,
path: &str,
args: OpWrite,
) -> impl Future<Output = Result<(RpWrite, <Arc<T> as Access>::Writer), Error>> + MaybeSend
fn write( &self, path: &str, args: OpWrite, ) -> impl Future<Output = Result<(RpWrite, <Arc<T> as Access>::Writer), Error>> + MaybeSend
write operation on the specified path, returns a
written size if operate successful. Read more§fn delete(
&self,
) -> impl Future<Output = Result<(RpDelete, <Arc<T> as Access>::Deleter), Error>> + MaybeSend
fn delete( &self, ) -> impl Future<Output = Result<(RpDelete, <Arc<T> as Access>::Deleter), Error>> + MaybeSend
delete operation on the specified path. Read more§fn list(
&self,
path: &str,
args: OpList,
) -> impl Future<Output = Result<(RpList, <Arc<T> as Access>::Lister), Error>> + MaybeSend
fn list( &self, path: &str, args: OpList, ) -> impl Future<Output = Result<(RpList, <Arc<T> as Access>::Lister), Error>> + MaybeSend
list operation on the specified path. Read more§fn copy(
&self,
from: &str,
to: &str,
args: OpCopy,
) -> impl Future<Output = Result<RpCopy, Error>> + MaybeSend
fn copy( &self, from: &str, to: &str, args: OpCopy, ) -> impl Future<Output = Result<RpCopy, Error>> + MaybeSend
§fn rename(
&self,
from: &str,
to: &str,
args: OpRename,
) -> impl Future<Output = Result<RpRename, Error>> + MaybeSend
fn rename( &self, from: &str, to: &str, args: OpRename, ) -> impl Future<Output = Result<RpRename, Error>> + MaybeSend
§fn presign(
&self,
path: &str,
args: OpPresign,
) -> impl Future<Output = Result<RpPresign, Error>> + MaybeSend
fn presign( &self, path: &str, args: OpPresign, ) -> impl Future<Output = Result<RpPresign, Error>> + MaybeSend
presign operation on the specified path. Read more§fn blocking_create_dir(
&self,
path: &str,
args: OpCreateDir,
) -> Result<RpCreateDir, Error>
fn blocking_create_dir( &self, path: &str, args: OpCreateDir, ) -> Result<RpCreateDir, Error>
blocking_create operation on the specified path. Read more§fn blocking_stat(&self, path: &str, args: OpStat) -> Result<RpStat, Error>
fn blocking_stat(&self, path: &str, args: OpStat) -> Result<RpStat, Error>
blocking_stat operation on the specified path. Read more§fn blocking_read(
&self,
path: &str,
args: OpRead,
) -> Result<(RpRead, <Arc<T> as Access>::BlockingReader), Error>
fn blocking_read( &self, path: &str, args: OpRead, ) -> Result<(RpRead, <Arc<T> as Access>::BlockingReader), Error>
blocking_read operation on the specified path. Read more§fn blocking_write(
&self,
path: &str,
args: OpWrite,
) -> Result<(RpWrite, <Arc<T> as Access>::BlockingWriter), Error>
fn blocking_write( &self, path: &str, args: OpWrite, ) -> Result<(RpWrite, <Arc<T> as Access>::BlockingWriter), Error>
blocking_write operation on the specified path. Read more§fn blocking_delete(
&self,
) -> Result<(RpDelete, <Arc<T> as Access>::BlockingDeleter), Error>
fn blocking_delete( &self, ) -> Result<(RpDelete, <Arc<T> as Access>::BlockingDeleter), Error>
blocking_delete operation on the specified path. Read more§fn blocking_list(
&self,
path: &str,
args: OpList,
) -> Result<(RpList, <Arc<T> as Access>::BlockingLister), Error>
fn blocking_list( &self, path: &str, args: OpList, ) -> Result<(RpList, <Arc<T> as Access>::BlockingLister), Error>
blocking_list operation on the specified path. Read more§fn blocking_copy(
&self,
from: &str,
to: &str,
args: OpCopy,
) -> Result<RpCopy, Error>
fn blocking_copy( &self, from: &str, to: &str, args: OpCopy, ) -> Result<RpCopy, Error>
§impl Array for Arc<dyn Array>
Ergonomics: Allow use of an ArrayRef as an &dyn Array
impl Array for Arc<dyn Array>
Ergonomics: Allow use of an ArrayRef as an &dyn Array
§fn shrink_to_fit(&mut self)
fn shrink_to_fit(&mut self)
For shared buffers, this is a no-op.
§fn slice(&self, offset: usize, length: usize) -> Arc<dyn Array>
fn slice(&self, offset: usize, length: usize) -> Arc<dyn Array>
§fn offset(&self) -> usize
fn offset(&self) -> usize
0. Read more§fn logical_nulls(&self) -> Option<NullBuffer>
fn logical_nulls(&self) -> Option<NullBuffer>
NullBuffer] that represents the logical
null values of this array, if any. Read more§fn null_count(&self) -> usize
fn null_count(&self) -> usize
§fn logical_null_count(&self) -> usize
fn logical_null_count(&self) -> usize
§fn is_nullable(&self) -> bool
fn is_nullable(&self) -> bool
false if the array is guaranteed to not contain any logical nulls Read more§fn get_buffer_memory_size(&self) -> usize
fn get_buffer_memory_size(&self) -> usize
§fn get_array_memory_size(&self) -> usize
fn get_array_memory_size(&self) -> usize
get_buffer_memory_size() and
includes the overhead of the data structures that contain the pointers to the various buffers.§impl Array for Arc<dyn Array>
Ergonomics: Allow use of an ArrayRef as an &dyn Array
impl Array for Arc<dyn Array>
Ergonomics: Allow use of an ArrayRef as an &dyn Array
§fn shrink_to_fit(&mut self)
fn shrink_to_fit(&mut self)
For shared buffers, this is a no-op.
§fn slice(&self, offset: usize, length: usize) -> Arc<dyn Array>
fn slice(&self, offset: usize, length: usize) -> Arc<dyn Array>
§fn offset(&self) -> usize
fn offset(&self) -> usize
0. Read more§fn logical_nulls(&self) -> Option<NullBuffer>
fn logical_nulls(&self) -> Option<NullBuffer>
NullBuffer] that represents the logical
null values of this array, if any. Read more§fn null_count(&self) -> usize
fn null_count(&self) -> usize
§fn logical_null_count(&self) -> usize
fn logical_null_count(&self) -> usize
§fn is_nullable(&self) -> bool
fn is_nullable(&self) -> bool
false if the array is guaranteed to not contain any logical nulls Read more§fn get_buffer_memory_size(&self) -> usize
fn get_buffer_memory_size(&self) -> usize
§fn get_array_memory_size(&self) -> usize
fn get_array_memory_size(&self) -> usize
get_buffer_memory_size() and
includes the overhead of the data structures that contain the pointers to the various buffers.§impl AsArray for Arc<dyn Array>
impl AsArray for Arc<dyn Array>
§fn as_boolean_opt(&self) -> Option<&BooleanArray>
fn as_boolean_opt(&self) -> Option<&BooleanArray>
BooleanArray] returning None if not possible§fn as_primitive_opt<T>(&self) -> Option<&PrimitiveArray<T>>where
T: ArrowPrimitiveType,
fn as_primitive_opt<T>(&self) -> Option<&PrimitiveArray<T>>where
T: ArrowPrimitiveType,
PrimitiveArray] returning None if not possible§fn as_bytes_opt<T>(&self) -> Option<&GenericByteArray<T>>where
T: ByteArrayType,
fn as_bytes_opt<T>(&self) -> Option<&GenericByteArray<T>>where
T: ByteArrayType,
GenericByteArray] returning None if not possible§fn as_byte_view_opt<T>(&self) -> Option<&GenericByteViewArray<T>>where
T: ByteViewType,
fn as_byte_view_opt<T>(&self) -> Option<&GenericByteViewArray<T>>where
T: ByteViewType,
GenericByteViewArray] returning None if not possible§fn as_struct_opt(&self) -> Option<&StructArray>
fn as_struct_opt(&self) -> Option<&StructArray>
StructArray] returning None if not possible§fn as_union_opt(&self) -> Option<&UnionArray>
fn as_union_opt(&self) -> Option<&UnionArray>
UnionArray] returning None if not possible§fn as_list_opt<O>(&self) -> Option<&GenericListArray<O>>where
O: OffsetSizeTrait,
fn as_list_opt<O>(&self) -> Option<&GenericListArray<O>>where
O: OffsetSizeTrait,
GenericListArray] returning None if not possible§fn as_list_view_opt<O>(&self) -> Option<&GenericListViewArray<O>>where
O: OffsetSizeTrait,
fn as_list_view_opt<O>(&self) -> Option<&GenericListViewArray<O>>where
O: OffsetSizeTrait,
GenericListViewArray] returning None if not possible§fn as_fixed_size_binary_opt(&self) -> Option<&FixedSizeBinaryArray>
fn as_fixed_size_binary_opt(&self) -> Option<&FixedSizeBinaryArray>
FixedSizeBinaryArray] returning None if not possible§fn as_fixed_size_list_opt(&self) -> Option<&FixedSizeListArray>
fn as_fixed_size_list_opt(&self) -> Option<&FixedSizeListArray>
FixedSizeListArray] returning None if not possible§fn as_map_opt(&self) -> Option<&MapArray>
fn as_map_opt(&self) -> Option<&MapArray>
MapArray] returning None if not possible§fn as_dictionary_opt<K>(&self) -> Option<&DictionaryArray<K>>where
K: ArrowDictionaryKeyType,
fn as_dictionary_opt<K>(&self) -> Option<&DictionaryArray<K>>where
K: ArrowDictionaryKeyType,
DictionaryArray] returning None if not possible§fn as_any_dictionary_opt(&self) -> Option<&dyn AnyDictionaryArray>
fn as_any_dictionary_opt(&self) -> Option<&dyn AnyDictionaryArray>
AnyDictionaryArray] returning None if not possible§fn as_boolean(&self) -> &BooleanArray
fn as_boolean(&self) -> &BooleanArray
BooleanArray] panicking if not possible§fn as_primitive<T>(&self) -> &PrimitiveArray<T>where
T: ArrowPrimitiveType,
fn as_primitive<T>(&self) -> &PrimitiveArray<T>where
T: ArrowPrimitiveType,
PrimitiveArray] panicking if not possible§fn as_bytes<T>(&self) -> &GenericByteArray<T>where
T: ByteArrayType,
fn as_bytes<T>(&self) -> &GenericByteArray<T>where
T: ByteArrayType,
GenericByteArray] panicking if not possible§fn as_string_opt<O>(&self) -> Option<&GenericByteArray<GenericStringType<O>>>where
O: OffsetSizeTrait,
fn as_string_opt<O>(&self) -> Option<&GenericByteArray<GenericStringType<O>>>where
O: OffsetSizeTrait,
GenericStringArray] returning None if not possible§fn as_string<O>(&self) -> &GenericByteArray<GenericStringType<O>>where
O: OffsetSizeTrait,
fn as_string<O>(&self) -> &GenericByteArray<GenericStringType<O>>where
O: OffsetSizeTrait,
GenericStringArray] panicking if not possible§fn as_binary_opt<O>(&self) -> Option<&GenericByteArray<GenericBinaryType<O>>>where
O: OffsetSizeTrait,
fn as_binary_opt<O>(&self) -> Option<&GenericByteArray<GenericBinaryType<O>>>where
O: OffsetSizeTrait,
GenericBinaryArray] returning None if not possible§fn as_binary<O>(&self) -> &GenericByteArray<GenericBinaryType<O>>where
O: OffsetSizeTrait,
fn as_binary<O>(&self) -> &GenericByteArray<GenericBinaryType<O>>where
O: OffsetSizeTrait,
GenericBinaryArray] panicking if not possible§fn as_string_view_opt(&self) -> Option<&GenericByteViewArray<StringViewType>>
fn as_string_view_opt(&self) -> Option<&GenericByteViewArray<StringViewType>>
StringViewArray] returning None if not possible§fn as_string_view(&self) -> &GenericByteViewArray<StringViewType>
fn as_string_view(&self) -> &GenericByteViewArray<StringViewType>
StringViewArray] panicking if not possible§fn as_binary_view_opt(&self) -> Option<&GenericByteViewArray<BinaryViewType>>
fn as_binary_view_opt(&self) -> Option<&GenericByteViewArray<BinaryViewType>>
BinaryViewArray] returning None if not possible§fn as_binary_view(&self) -> &GenericByteViewArray<BinaryViewType>
fn as_binary_view(&self) -> &GenericByteViewArray<BinaryViewType>
BinaryViewArray] panicking if not possible§fn as_byte_view<T>(&self) -> &GenericByteViewArray<T>where
T: ByteViewType,
fn as_byte_view<T>(&self) -> &GenericByteViewArray<T>where
T: ByteViewType,
GenericByteViewArray] panicking if not possible§fn as_list<O>(&self) -> &GenericListArray<O>where
O: OffsetSizeTrait,
fn as_list<O>(&self) -> &GenericListArray<O>where
O: OffsetSizeTrait,
GenericListArray] panicking if not possible§fn as_list_view<O>(&self) -> &GenericListViewArray<O>where
O: OffsetSizeTrait,
fn as_list_view<O>(&self) -> &GenericListViewArray<O>where
O: OffsetSizeTrait,
GenericListViewArray] panicking if not possible§fn as_fixed_size_binary(&self) -> &FixedSizeBinaryArray
fn as_fixed_size_binary(&self) -> &FixedSizeBinaryArray
FixedSizeBinaryArray] panicking if not possible§fn as_fixed_size_list(&self) -> &FixedSizeListArray
fn as_fixed_size_list(&self) -> &FixedSizeListArray
FixedSizeListArray] panicking if not possible§fn as_dictionary<K>(&self) -> &DictionaryArray<K>where
K: ArrowDictionaryKeyType,
fn as_dictionary<K>(&self) -> &DictionaryArray<K>where
K: ArrowDictionaryKeyType,
DictionaryArray] panicking if not possible§fn as_any_dictionary(&self) -> &dyn AnyDictionaryArray
fn as_any_dictionary(&self) -> &dyn AnyDictionaryArray
AnyDictionaryArray] panicking if not possible§impl AsArray for Arc<dyn Array>
impl AsArray for Arc<dyn Array>
§fn as_boolean_opt(&self) -> Option<&BooleanArray>
fn as_boolean_opt(&self) -> Option<&BooleanArray>
BooleanArray] returning None if not possible§fn as_primitive_opt<T>(&self) -> Option<&PrimitiveArray<T>>where
T: ArrowPrimitiveType,
fn as_primitive_opt<T>(&self) -> Option<&PrimitiveArray<T>>where
T: ArrowPrimitiveType,
PrimitiveArray] returning None if not possible§fn as_bytes_opt<T>(&self) -> Option<&GenericByteArray<T>>where
T: ByteArrayType,
fn as_bytes_opt<T>(&self) -> Option<&GenericByteArray<T>>where
T: ByteArrayType,
GenericByteArray] returning None if not possible§fn as_byte_view_opt<T>(&self) -> Option<&GenericByteViewArray<T>>where
T: ByteViewType,
fn as_byte_view_opt<T>(&self) -> Option<&GenericByteViewArray<T>>where
T: ByteViewType,
GenericByteViewArray] returning None if not possible§fn as_struct_opt(&self) -> Option<&StructArray>
fn as_struct_opt(&self) -> Option<&StructArray>
StructArray] returning None if not possible§fn as_union_opt(&self) -> Option<&UnionArray>
fn as_union_opt(&self) -> Option<&UnionArray>
UnionArray] returning None if not possible§fn as_list_opt<O>(&self) -> Option<&GenericListArray<O>>where
O: OffsetSizeTrait,
fn as_list_opt<O>(&self) -> Option<&GenericListArray<O>>where
O: OffsetSizeTrait,
GenericListArray] returning None if not possible§fn as_list_view_opt<O>(&self) -> Option<&GenericListViewArray<O>>where
O: OffsetSizeTrait,
fn as_list_view_opt<O>(&self) -> Option<&GenericListViewArray<O>>where
O: OffsetSizeTrait,
GenericListViewArray] returning None if not possible§fn as_fixed_size_binary_opt(&self) -> Option<&FixedSizeBinaryArray>
fn as_fixed_size_binary_opt(&self) -> Option<&FixedSizeBinaryArray>
FixedSizeBinaryArray] returning None if not possible§fn as_fixed_size_list_opt(&self) -> Option<&FixedSizeListArray>
fn as_fixed_size_list_opt(&self) -> Option<&FixedSizeListArray>
FixedSizeListArray] returning None if not possible§fn as_map_opt(&self) -> Option<&MapArray>
fn as_map_opt(&self) -> Option<&MapArray>
MapArray] returning None if not possible§fn as_dictionary_opt<K>(&self) -> Option<&DictionaryArray<K>>where
K: ArrowDictionaryKeyType,
fn as_dictionary_opt<K>(&self) -> Option<&DictionaryArray<K>>where
K: ArrowDictionaryKeyType,
DictionaryArray] returning None if not possible§fn as_any_dictionary_opt(&self) -> Option<&dyn AnyDictionaryArray>
fn as_any_dictionary_opt(&self) -> Option<&dyn AnyDictionaryArray>
AnyDictionaryArray] returning None if not possible§fn as_boolean(&self) -> &BooleanArray
fn as_boolean(&self) -> &BooleanArray
BooleanArray] panicking if not possible§fn as_primitive<T>(&self) -> &PrimitiveArray<T>where
T: ArrowPrimitiveType,
fn as_primitive<T>(&self) -> &PrimitiveArray<T>where
T: ArrowPrimitiveType,
PrimitiveArray] panicking if not possible§fn as_bytes<T>(&self) -> &GenericByteArray<T>where
T: ByteArrayType,
fn as_bytes<T>(&self) -> &GenericByteArray<T>where
T: ByteArrayType,
GenericByteArray] panicking if not possible§fn as_string_opt<O>(&self) -> Option<&GenericByteArray<GenericStringType<O>>>where
O: OffsetSizeTrait,
fn as_string_opt<O>(&self) -> Option<&GenericByteArray<GenericStringType<O>>>where
O: OffsetSizeTrait,
GenericStringArray] returning None if not possible§fn as_string<O>(&self) -> &GenericByteArray<GenericStringType<O>>where
O: OffsetSizeTrait,
fn as_string<O>(&self) -> &GenericByteArray<GenericStringType<O>>where
O: OffsetSizeTrait,
GenericStringArray] panicking if not possible§fn as_binary_opt<O>(&self) -> Option<&GenericByteArray<GenericBinaryType<O>>>where
O: OffsetSizeTrait,
fn as_binary_opt<O>(&self) -> Option<&GenericByteArray<GenericBinaryType<O>>>where
O: OffsetSizeTrait,
GenericBinaryArray] returning None if not possible§fn as_binary<O>(&self) -> &GenericByteArray<GenericBinaryType<O>>where
O: OffsetSizeTrait,
fn as_binary<O>(&self) -> &GenericByteArray<GenericBinaryType<O>>where
O: OffsetSizeTrait,
GenericBinaryArray] panicking if not possible§fn as_string_view_opt(&self) -> Option<&GenericByteViewArray<StringViewType>>
fn as_string_view_opt(&self) -> Option<&GenericByteViewArray<StringViewType>>
StringViewArray] returning None if not possible§fn as_string_view(&self) -> &GenericByteViewArray<StringViewType>
fn as_string_view(&self) -> &GenericByteViewArray<StringViewType>
StringViewArray] panicking if not possible§fn as_binary_view_opt(&self) -> Option<&GenericByteViewArray<BinaryViewType>>
fn as_binary_view_opt(&self) -> Option<&GenericByteViewArray<BinaryViewType>>
BinaryViewArray] returning None if not possible§fn as_binary_view(&self) -> &GenericByteViewArray<BinaryViewType>
fn as_binary_view(&self) -> &GenericByteViewArray<BinaryViewType>
BinaryViewArray] panicking if not possible§fn as_byte_view<T>(&self) -> &GenericByteViewArray<T>where
T: ByteViewType,
fn as_byte_view<T>(&self) -> &GenericByteViewArray<T>where
T: ByteViewType,
GenericByteViewArray] panicking if not possible§fn as_list<O>(&self) -> &GenericListArray<O>where
O: OffsetSizeTrait,
fn as_list<O>(&self) -> &GenericListArray<O>where
O: OffsetSizeTrait,
GenericListArray] panicking if not possible§fn as_list_view<O>(&self) -> &GenericListViewArray<O>where
O: OffsetSizeTrait,
fn as_list_view<O>(&self) -> &GenericListViewArray<O>where
O: OffsetSizeTrait,
GenericListViewArray] panicking if not possible§fn as_fixed_size_binary(&self) -> &FixedSizeBinaryArray
fn as_fixed_size_binary(&self) -> &FixedSizeBinaryArray
FixedSizeBinaryArray] panicking if not possible§fn as_fixed_size_list(&self) -> &FixedSizeListArray
fn as_fixed_size_list(&self) -> &FixedSizeListArray
FixedSizeListArray] panicking if not possible§fn as_dictionary<K>(&self) -> &DictionaryArray<K>where
K: ArrowDictionaryKeyType,
fn as_dictionary<K>(&self) -> &DictionaryArray<K>where
K: ArrowDictionaryKeyType,
DictionaryArray] panicking if not possible§fn as_any_dictionary(&self) -> &dyn AnyDictionaryArray
fn as_any_dictionary(&self) -> &dyn AnyDictionaryArray
AnyDictionaryArray] panicking if not possible1.64.0 · Source§impl<T> AsFd for Arc<T>
This impl allows implementing traits that require AsFd on Arc.
impl<T> AsFd for Arc<T>
This impl allows implementing traits that require AsFd on Arc.
use std::net::UdpSocket;
use std::sync::Arc;
trait MyTrait: AsFd {}
impl MyTrait for Arc<UdpSocket> {}
impl MyTrait for Box<UdpSocket> {}Source§fn as_fd(&self) -> BorrowedFd<'_>
fn as_fd(&self) -> BorrowedFd<'_>
1.63.0 · Source§impl<T> AsRawFd for Arc<T>where
T: AsRawFd,
This impl allows implementing traits that require AsRawFd on Arc.
impl<T> AsRawFd for Arc<T>where
T: AsRawFd,
This impl allows implementing traits that require AsRawFd on Arc.
use std::net::UdpSocket;
use std::sync::Arc;
trait MyTrait: AsRawFd {
}
impl MyTrait for Arc<UdpSocket> {}
impl MyTrait for Box<UdpSocket> {}Source§impl<'de, T> BorrowDecode<'de> for Arc<[T]>where
T: BorrowDecode<'de> + 'de,
impl<'de, T> BorrowDecode<'de> for Arc<[T]>where
T: BorrowDecode<'de> + 'de,
Source§fn borrow_decode<D>(decoder: &mut D) -> Result<Arc<[T]>, DecodeError>where
D: BorrowDecoder<'de>,
fn borrow_decode<D>(decoder: &mut D) -> Result<Arc<[T]>, DecodeError>where
D: BorrowDecoder<'de>,
Source§impl<'de, T> BorrowDecode<'de> for Arc<T>where
T: BorrowDecode<'de>,
impl<'de, T> BorrowDecode<'de> for Arc<T>where
T: BorrowDecode<'de>,
Source§fn borrow_decode<D>(decoder: &mut D) -> Result<Arc<T>, DecodeError>where
D: BorrowDecoder<'de>,
fn borrow_decode<D>(decoder: &mut D) -> Result<Arc<T>, DecodeError>where
D: BorrowDecoder<'de>,
Source§impl<'de> BorrowDecode<'de> for Arc<str>
impl<'de> BorrowDecode<'de> for Arc<str>
Source§fn borrow_decode<D>(decoder: &mut D) -> Result<Arc<str>, DecodeError>where
D: BorrowDecoder<'de>,
fn borrow_decode<D>(decoder: &mut D) -> Result<Arc<str>, DecodeError>where
D: BorrowDecoder<'de>,
1.0.0 · Source§impl<T, A> Clone for Arc<T, A>
impl<T, A> Clone for Arc<T, A>
Source§fn clone(&self) -> Arc<T, A>
fn clone(&self) -> Arc<T, A>
Makes a clone of the Arc pointer.
This creates another pointer to the same allocation, increasing the strong reference count.
§Examples
use std::sync::Arc;
let five = Arc::new(5);
let _ = Arc::clone(&five);1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<'de, T> Deserialize<'de> for Arc<T>
This impl requires the "rc" Cargo feature of Serde.
impl<'de, T> Deserialize<'de> for Arc<T>
This impl requires the "rc" Cargo feature of Serde.
Deserializing a data structure containing Arc will not attempt to
deduplicate Arc references to the same data. Every deserialized Arc
will end up with a strong count of 1.
Source§fn deserialize<D>(
deserializer: D,
) -> Result<Arc<T>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<Arc<T>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Source§impl<'de, T, U> DeserializeAs<'de, Arc<T>> for Arc<U>where
U: DeserializeAs<'de, T>,
impl<'de, T, U> DeserializeAs<'de, Arc<T>> for Arc<U>where
U: DeserializeAs<'de, T>,
Source§fn deserialize_as<D>(
deserializer: D,
) -> Result<Arc<T>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize_as<D>(
deserializer: D,
) -> Result<Arc<T>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Source§impl<'de, T, U> DeserializeAs<'de, Pin<Arc<T>>> for Pin<Arc<U>>where
U: DeserializeAs<'de, T>,
impl<'de, T, U> DeserializeAs<'de, Pin<Arc<T>>> for Pin<Arc<U>>where
U: DeserializeAs<'de, T>,
Source§fn deserialize_as<D>(
deserializer: D,
) -> Result<Pin<Arc<T>>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize_as<D>(
deserializer: D,
) -> Result<Pin<Arc<T>>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
1.0.0 · Source§impl<T, A> Drop for Arc<T, A>
impl<T, A> Drop for Arc<T, A>
Source§fn drop(&mut self)
fn drop(&mut self)
Drops the Arc.
This will decrement the strong reference count. If the strong reference
count reaches zero then the only other references (if any) are
Weak, so we drop the inner value.
§Examples
use std::sync::Arc;
struct Foo;
impl Drop for Foo {
fn drop(&mut self) {
println!("dropped!");
}
}
let foo = Arc::new(Foo);
let foo2 = Arc::clone(&foo);
drop(foo); // Doesn't print anything
drop(foo2); // Prints "dropped!"1.52.0 · Source§impl<T> Error for Arc<T>
impl<T> Error for Arc<T>
Source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Source§fn provide<'a>(&'a self, req: &mut Request<'a>)
fn provide<'a>(&'a self, req: &mut Request<'a>)
error_generic_member_access)1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
§impl ExecutionPlanProperties for Arc<dyn ExecutionPlan>
impl ExecutionPlanProperties for Arc<dyn ExecutionPlan>
§fn output_partitioning(&self) -> &Partitioning
fn output_partitioning(&self) -> &Partitioning
ExecutionPlan is split into
partitions.§fn output_ordering(&self) -> Option<&LexOrdering>
fn output_ordering(&self) -> Option<&LexOrdering>
ExecutionPlan within each partition is sorted,
returns Some(keys) describing the ordering. A None return value
indicates no assumptions should be made on the output ordering. Read more§fn boundedness(&self) -> Boundedness
fn boundedness(&self) -> Boundedness
ExecutionPlan.
For more details, see [Boundedness].§fn pipeline_behavior(&self) -> EmissionType
fn pipeline_behavior(&self) -> EmissionType
ExecutionPlan emits its results.
For more details, see [EmissionType].§fn equivalence_properties(&self) -> &EquivalenceProperties
fn equivalence_properties(&self) -> &EquivalenceProperties
EquivalenceProperties] within the plan. Read more§impl ExecutionPlanProperties for Arc<dyn ExecutionPlan>
impl ExecutionPlanProperties for Arc<dyn ExecutionPlan>
§fn output_partitioning(&self) -> &Partitioning
fn output_partitioning(&self) -> &Partitioning
ExecutionPlan is split into
partitions.§fn output_ordering(&self) -> Option<&LexOrdering>
fn output_ordering(&self) -> Option<&LexOrdering>
ExecutionPlan within each partition is sorted,
returns Some(keys) describing the ordering. A None return value
indicates no assumptions should be made on the output ordering. Read more§fn boundedness(&self) -> Boundedness
fn boundedness(&self) -> Boundedness
ExecutionPlan.
For more details, see [Boundedness].§fn pipeline_behavior(&self) -> EmissionType
fn pipeline_behavior(&self) -> EmissionType
ExecutionPlan emits its results.
For more details, see [EmissionType].§fn equivalence_properties(&self) -> &EquivalenceProperties
fn equivalence_properties(&self) -> &EquivalenceProperties
EquivalenceProperties] within the plan. Read more§impl<Exe> Executor for Arc<Exe>where
Exe: Executor,
impl<Exe> Executor for Arc<Exe>where
Exe: Executor,
§fn spawn_blocking<F, Res>(&self, f: F) -> JoinHandle<Res>
fn spawn_blocking<F, Res>(&self, f: F) -> JoinHandle<Res>
§impl<S> Filter<S> for Arc<dyn Filter<S> + Sync + Send>
impl<S> Filter<S> for Arc<dyn Filter<S> + Sync + Send>
§fn enabled(&self, meta: &Metadata<'_>, cx: &Context<'_, S>) -> bool
fn enabled(&self, meta: &Metadata<'_>, cx: &Context<'_, S>) -> bool
true if this layer is interested in a span or event with the
given Metadata in the current [Context], similarly to
Subscriber::enabled. Read more§fn callsite_enabled(&self, meta: &'static Metadata<'static>) -> Interest
fn callsite_enabled(&self, meta: &'static Metadata<'static>) -> Interest
§fn max_level_hint(&self) -> Option<LevelFilter>
fn max_level_hint(&self) -> Option<LevelFilter>
§fn event_enabled(&self, event: &Event<'_>, cx: &Context<'_, S>) -> bool
fn event_enabled(&self, event: &Event<'_>, cx: &Context<'_, S>) -> bool
Layer]'s [on_event], to determine if on_event` should be called. Read more§fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>)
fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>)
§fn on_enter(&self, id: &Id, ctx: Context<'_, S>)
fn on_enter(&self, id: &Id, ctx: Context<'_, S>)
§impl From<LexOrdering> for Arc<[PhysicalSortExpr]>
Convert a LexOrdering into a Arc[<PhysicalSortExpr>] for fast copies
impl From<LexOrdering> for Arc<[PhysicalSortExpr]>
Convert a LexOrdering into a Arc[<PhysicalSortExpr>] for fast copies
§impl From<LexOrdering> for Arc<[PhysicalSortExpr]>
Convert a LexOrdering into a Arc[<PhysicalSortExpr>] for fast copies
impl From<LexOrdering> for Arc<[PhysicalSortExpr]>
Convert a LexOrdering into a Arc[<PhysicalSortExpr>] for fast copies
1.37.0 · Source§impl<T> FromIterator<T> for Arc<[T]>
impl<T> FromIterator<T> for Arc<[T]>
Source§fn from_iter<I>(iter: I) -> Arc<[T]>where
I: IntoIterator<Item = T>,
fn from_iter<I>(iter: I) -> Arc<[T]>where
I: IntoIterator<Item = T>,
Takes each element in the Iterator and collects it into an Arc<[T]>.
§Performance characteristics
§The general case
In the general case, collecting into Arc<[T]> is done by first
collecting into a Vec<T>. That is, when writing the following:
let evens: Arc<[u8]> = (0..10).filter(|&x| x % 2 == 0).collect();this behaves as if we wrote:
let evens: Arc<[u8]> = (0..10).filter(|&x| x % 2 == 0)
.collect::<Vec<_>>() // The first set of allocations happens here.
.into(); // A second allocation for `Arc<[T]>` happens here.This will allocate as many times as needed for constructing the Vec<T>
and then it will allocate once for turning the Vec<T> into the Arc<[T]>.
§Iterators of known length
When your Iterator implements TrustedLen and is of an exact size,
a single allocation will be made for the Arc<[T]>. For example:
let evens: Arc<[u8]> = (0..10).collect(); // Just a single allocation happens here.§impl<T> FromRedisValue for Arc<[T]>where
T: FromRedisValue,
impl<T> FromRedisValue for Arc<[T]>where
T: FromRedisValue,
§fn from_redis_value(v: &Value) -> Result<Arc<[T]>, RedisError>
fn from_redis_value(v: &Value) -> Result<Arc<[T]>, RedisError>
Value this attempts to convert it into the given
destination type. If that fails because it’s not compatible an
appropriate error is generated.§fn from_owned_redis_value(v: Value) -> Result<Arc<[T]>, RedisError>
fn from_owned_redis_value(v: Value) -> Result<Arc<[T]>, RedisError>
Value this attempts to convert it into the given
destination type. If that fails because it’s not compatible an
appropriate error is generated.§fn from_redis_values(items: &[Value]) -> Result<Vec<Self>, RedisError>
fn from_redis_values(items: &[Value]) -> Result<Vec<Self>, RedisError>
from_redis_value but constructs a vector of objects
from another vector of values. This primarily exists internally
to customize the behavior for vectors of tuples.§fn from_owned_redis_values(items: Vec<Value>) -> Result<Vec<Self>, RedisError>
fn from_owned_redis_values(items: Vec<Value>) -> Result<Vec<Self>, RedisError>
from_redis_values, but takes a Vec<Value> instead
of a &[Value].§fn from_each_owned_redis_values(
items: Vec<Value>,
) -> Vec<Result<Self, RedisError>>
fn from_each_owned_redis_values( items: Vec<Value>, ) -> Vec<Result<Self, RedisError>>
from_owned_redis_values, but returns a result for each
conversion to make handling them case-by-case possible.§fn from_byte_vec(_vec: &[u8]) -> Option<Vec<Self>>
fn from_byte_vec(_vec: &[u8]) -> Option<Vec<Self>>
§impl<T> FromRedisValue for Arc<T>where
T: FromRedisValue,
impl<T> FromRedisValue for Arc<T>where
T: FromRedisValue,
§fn from_redis_value(v: &Value) -> Result<Arc<T>, RedisError>
fn from_redis_value(v: &Value) -> Result<Arc<T>, RedisError>
Value this attempts to convert it into the given
destination type. If that fails because it’s not compatible an
appropriate error is generated.§fn from_owned_redis_value(v: Value) -> Result<Arc<T>, RedisError>
fn from_owned_redis_value(v: Value) -> Result<Arc<T>, RedisError>
Value this attempts to convert it into the given
destination type. If that fails because it’s not compatible an
appropriate error is generated.§fn from_redis_values(items: &[Value]) -> Result<Vec<Self>, RedisError>
fn from_redis_values(items: &[Value]) -> Result<Vec<Self>, RedisError>
from_redis_value but constructs a vector of objects
from another vector of values. This primarily exists internally
to customize the behavior for vectors of tuples.§fn from_owned_redis_values(items: Vec<Value>) -> Result<Vec<Self>, RedisError>
fn from_owned_redis_values(items: Vec<Value>) -> Result<Vec<Self>, RedisError>
from_redis_values, but takes a Vec<Value> instead
of a &[Value].§fn from_each_owned_redis_values(
items: Vec<Value>,
) -> Vec<Result<Self, RedisError>>
fn from_each_owned_redis_values( items: Vec<Value>, ) -> Vec<Result<Self, RedisError>>
from_owned_redis_values, but returns a result for each
conversion to make handling them case-by-case possible.§fn from_byte_vec(_vec: &[u8]) -> Option<Vec<Self>>
fn from_byte_vec(_vec: &[u8]) -> Option<Vec<Self>>
§impl FromValue for Arc<[u8]>
impl FromValue for Arc<[u8]>
type Intermediate = Arc<[u8]>
§fn from_value(v: Value) -> Self
fn from_value(v: Value) -> Self
v to Self.§fn from_value_opt(v: Value) -> Result<Self, FromValueError>
fn from_value_opt(v: Value) -> Result<Self, FromValueError>
Err(Error::FromValueError(v)) if could not convert v to Self.§fn get_intermediate(v: Value) -> Result<Self::Intermediate, FromValueError>
fn get_intermediate(v: Value) -> Result<Self::Intermediate, FromValueError>
Err(Error::FromValueError(v)) if v is not convertible to Self.§impl FromValue for Arc<str>
impl FromValue for Arc<str>
type Intermediate = Arc<str>
§fn from_value(v: Value) -> Self
fn from_value(v: Value) -> Self
v to Self.§fn from_value_opt(v: Value) -> Result<Self, FromValueError>
fn from_value_opt(v: Value) -> Result<Self, FromValueError>
Err(Error::FromValueError(v)) if could not convert v to Self.§fn get_intermediate(v: Value) -> Result<Self::Intermediate, FromValueError>
fn get_intermediate(v: Value) -> Result<Self::Intermediate, FromValueError>
Err(Error::FromValueError(v)) if v is not convertible to Self.§impl<T> JsonSchema for Arc<T>where
T: JsonSchema + ?Sized,
impl<T> JsonSchema for Arc<T>where
T: JsonSchema + ?Sized,
§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref keyword. Read more§fn schema_name() -> String
fn schema_name() -> String
§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
§impl<'a, W> MakeWriter<'a> for Arc<W>
impl<'a, W> MakeWriter<'a> for Arc<W>
§type Writer = &'a W
type Writer = &'a W
io::Write implementation returned by make_writer.§fn make_writer(&'a self) -> <Arc<W> as MakeWriter<'a>>::Writer ⓘ
fn make_writer(&'a self) -> <Arc<W> as MakeWriter<'a>>::Writer ⓘ
§fn make_writer_for(&'a self, meta: &Metadata<'_>) -> Self::Writer
fn make_writer_for(&'a self, meta: &Metadata<'_>) -> Self::Writer
§impl ObjectStore for Arc<dyn ObjectStore>
impl ObjectStore for Arc<dyn ObjectStore>
§fn put<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
payload: PutPayload,
) -> Pin<Box<dyn Future<Output = Result<PutResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn put<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
payload: PutPayload,
) -> Pin<Box<dyn Future<Output = Result<PutResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn put_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
payload: PutPayload,
opts: PutOptions,
) -> Pin<Box<dyn Future<Output = Result<PutResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn put_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
payload: PutPayload,
opts: PutOptions,
) -> Pin<Box<dyn Future<Output = Result<PutResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
payload to location with the given options§fn put_multipart<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn MultipartUpload>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn put_multipart<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn MultipartUpload>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn put_multipart_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
opts: PutMultipartOpts,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn MultipartUpload>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn put_multipart_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
opts: PutMultipartOpts,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn MultipartUpload>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<GetResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<GetResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn get_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
options: GetOptions,
) -> Pin<Box<dyn Future<Output = Result<GetResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn get_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
options: GetOptions,
) -> Pin<Box<dyn Future<Output = Result<GetResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn get_range<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
range: Range<usize>,
) -> Pin<Box<dyn Future<Output = Result<Bytes, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn get_range<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
range: Range<usize>,
) -> Pin<Box<dyn Future<Output = Result<Bytes, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn get_ranges<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
location: &'life1 Path,
ranges: &'life2 [Range<usize>],
) -> Pin<Box<dyn Future<Output = Result<Vec<Bytes>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn get_ranges<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
location: &'life1 Path,
ranges: &'life2 [Range<usize>],
) -> Pin<Box<dyn Future<Output = Result<Vec<Bytes>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn head<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<ObjectMeta, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn head<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<ObjectMeta, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn delete<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn delete<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn delete_stream<'a>(
&'a self,
locations: Pin<Box<dyn Stream<Item = Result<Path, Error>> + Send + 'a>>,
) -> Pin<Box<dyn Stream<Item = Result<Path, Error>> + Send + 'a>>
fn delete_stream<'a>( &'a self, locations: Pin<Box<dyn Stream<Item = Result<Path, Error>> + Send + 'a>>, ) -> Pin<Box<dyn Stream<Item = Result<Path, Error>> + Send + 'a>>
§fn list(
&self,
prefix: Option<&Path>,
) -> Pin<Box<dyn Stream<Item = Result<ObjectMeta, Error>> + Send + '_>>
fn list( &self, prefix: Option<&Path>, ) -> Pin<Box<dyn Stream<Item = Result<ObjectMeta, Error>> + Send + '_>>
§fn list_with_offset(
&self,
prefix: Option<&Path>,
offset: &Path,
) -> Pin<Box<dyn Stream<Item = Result<ObjectMeta, Error>> + Send + '_>>
fn list_with_offset( &self, prefix: Option<&Path>, offset: &Path, ) -> Pin<Box<dyn Stream<Item = Result<ObjectMeta, Error>> + Send + '_>>
offset Read more§fn list_with_delimiter<'life0, 'life1, 'async_trait>(
&'life0 self,
prefix: Option<&'life1 Path>,
) -> Pin<Box<dyn Future<Output = Result<ListResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn list_with_delimiter<'life0, 'life1, 'async_trait>(
&'life0 self,
prefix: Option<&'life1 Path>,
) -> Pin<Box<dyn Future<Output = Result<ListResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn copy<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn copy<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn rename<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn rename<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn copy_if_not_exists<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn copy_if_not_exists<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn rename_if_not_exists<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn rename_if_not_exists<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§impl ObjectStore for Arc<dyn ObjectStore>
impl ObjectStore for Arc<dyn ObjectStore>
§fn put<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
payload: PutPayload,
) -> Pin<Box<dyn Future<Output = Result<PutResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn put<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
payload: PutPayload,
) -> Pin<Box<dyn Future<Output = Result<PutResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn put_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
payload: PutPayload,
opts: PutOptions,
) -> Pin<Box<dyn Future<Output = Result<PutResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn put_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
payload: PutPayload,
opts: PutOptions,
) -> Pin<Box<dyn Future<Output = Result<PutResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
payload to location with the given options§fn put_multipart<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn MultipartUpload>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn put_multipart<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn MultipartUpload>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn put_multipart_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
opts: PutMultipartOpts,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn MultipartUpload>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn put_multipart_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
opts: PutMultipartOpts,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn MultipartUpload>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<GetResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<GetResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn get_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
options: GetOptions,
) -> Pin<Box<dyn Future<Output = Result<GetResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn get_opts<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
options: GetOptions,
) -> Pin<Box<dyn Future<Output = Result<GetResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn get_range<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
range: Range<u64>,
) -> Pin<Box<dyn Future<Output = Result<Bytes, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn get_range<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
range: Range<u64>,
) -> Pin<Box<dyn Future<Output = Result<Bytes, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn get_ranges<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
location: &'life1 Path,
ranges: &'life2 [Range<u64>],
) -> Pin<Box<dyn Future<Output = Result<Vec<Bytes>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn get_ranges<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
location: &'life1 Path,
ranges: &'life2 [Range<u64>],
) -> Pin<Box<dyn Future<Output = Result<Vec<Bytes>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn head<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<ObjectMeta, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn head<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<ObjectMeta, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn delete<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn delete<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn delete_stream<'a>(
&'a self,
locations: Pin<Box<dyn Stream<Item = Result<Path, Error>> + Send + 'a>>,
) -> Pin<Box<dyn Stream<Item = Result<Path, Error>> + Send + 'a>>
fn delete_stream<'a>( &'a self, locations: Pin<Box<dyn Stream<Item = Result<Path, Error>> + Send + 'a>>, ) -> Pin<Box<dyn Stream<Item = Result<Path, Error>> + Send + 'a>>
§fn list(
&self,
prefix: Option<&Path>,
) -> Pin<Box<dyn Stream<Item = Result<ObjectMeta, Error>> + Send>>
fn list( &self, prefix: Option<&Path>, ) -> Pin<Box<dyn Stream<Item = Result<ObjectMeta, Error>> + Send>>
§fn list_with_offset(
&self,
prefix: Option<&Path>,
offset: &Path,
) -> Pin<Box<dyn Stream<Item = Result<ObjectMeta, Error>> + Send>>
fn list_with_offset( &self, prefix: Option<&Path>, offset: &Path, ) -> Pin<Box<dyn Stream<Item = Result<ObjectMeta, Error>> + Send>>
offset Read more§fn list_with_delimiter<'life0, 'life1, 'async_trait>(
&'life0 self,
prefix: Option<&'life1 Path>,
) -> Pin<Box<dyn Future<Output = Result<ListResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn list_with_delimiter<'life0, 'life1, 'async_trait>(
&'life0 self,
prefix: Option<&'life1 Path>,
) -> Pin<Box<dyn Future<Output = Result<ListResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn copy<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn copy<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn rename<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn rename<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn copy_if_not_exists<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn copy_if_not_exists<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
§fn rename_if_not_exists<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
fn rename_if_not_exists<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
from: &'life1 Path,
to: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Arc<dyn ObjectStore>: 'async_trait,
1.0.0 · Source§impl<T, A> Ord for Arc<T, A>
impl<T, A> Ord for Arc<T, A>
Source§fn cmp(&self, other: &Arc<T, A>) -> Ordering
fn cmp(&self, other: &Arc<T, A>) -> Ordering
Comparison for two Arcs.
The two are compared by calling cmp() on their inner values.
§Examples
use std::sync::Arc;
use std::cmp::Ordering;
let five = Arc::new(5);
assert_eq!(Ordering::Less, five.cmp(&Arc::new(6)));1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
1.0.0 · Source§impl<T, A> PartialEq for Arc<T, A>
impl<T, A> PartialEq for Arc<T, A>
Source§fn eq(&self, other: &Arc<T, A>) -> bool
fn eq(&self, other: &Arc<T, A>) -> bool
Equality for two Arcs.
Two Arcs are equal if their inner values are equal, even if they are
stored in different allocation.
If T also implements Eq (implying reflexivity of equality),
two Arcs that point to the same allocation are always equal.
§Examples
use std::sync::Arc;
let five = Arc::new(5);
assert!(five == Arc::new(5));Source§fn ne(&self, other: &Arc<T, A>) -> bool
fn ne(&self, other: &Arc<T, A>) -> bool
Inequality for two Arcs.
Two Arcs are not equal if their inner values are not equal.
If T also implements Eq (implying reflexivity of equality),
two Arcs that point to the same value are always equal.
§Examples
use std::sync::Arc;
let five = Arc::new(5);
assert!(five != Arc::new(6));1.0.0 · Source§impl<T, A> PartialOrd for Arc<T, A>
impl<T, A> PartialOrd for Arc<T, A>
Source§fn partial_cmp(&self, other: &Arc<T, A>) -> Option<Ordering>
fn partial_cmp(&self, other: &Arc<T, A>) -> Option<Ordering>
Partial comparison for two Arcs.
The two are compared by calling partial_cmp() on their inner values.
§Examples
use std::sync::Arc;
use std::cmp::Ordering;
let five = Arc::new(5);
assert_eq!(Some(Ordering::Less), five.partial_cmp(&Arc::new(6)));Source§fn lt(&self, other: &Arc<T, A>) -> bool
fn lt(&self, other: &Arc<T, A>) -> bool
Less-than comparison for two Arcs.
The two are compared by calling < on their inner values.
§Examples
use std::sync::Arc;
let five = Arc::new(5);
assert!(five < Arc::new(6));Source§fn le(&self, other: &Arc<T, A>) -> bool
fn le(&self, other: &Arc<T, A>) -> bool
‘Less than or equal to’ comparison for two Arcs.
The two are compared by calling <= on their inner values.
§Examples
use std::sync::Arc;
let five = Arc::new(5);
assert!(five <= Arc::new(5));§impl ProvideCredentials for Arc<dyn ProvideCredentials>
impl ProvideCredentials for Arc<dyn ProvideCredentials>
§fn provide_credentials<'a>(&'a self) -> ProvideCredentials<'a>where
Arc<dyn ProvideCredentials>: 'a,
fn provide_credentials<'a>(&'a self) -> ProvideCredentials<'a>where
Arc<dyn ProvideCredentials>: 'a,
§fn fallback_on_interrupt(&self) -> Option<Credentials>
fn fallback_on_interrupt(&self) -> Option<Credentials>
Source§impl RangeKv for Arc<RwLock<RawRwLock, BTreeMap<FullKey<Bytes>, Option<Bytes>>>>
impl RangeKv for Arc<RwLock<RawRwLock, BTreeMap<FullKey<Bytes>, Option<Bytes>>>>
fn range( &self, range: (Bound<FullKey<Bytes>>, Bound<FullKey<Bytes>>), limit: Option<usize>, ) -> Result<Vec<(FullKey<Bytes>, Option<Bytes>)>, StorageError>
fn rev_range( &self, range: (Bound<FullKey<Bytes>>, Bound<FullKey<Bytes>>), limit: Option<usize>, ) -> Result<Vec<(FullKey<Bytes>, Option<Bytes>)>, StorageError>
fn ingest_batch( &self, kv_pairs: impl Iterator<Item = (FullKey<Bytes>, Option<Bytes>)>, ) -> Result<(), StorageError>
fn flush(&self) -> Result<(), StorageError>
1.73.0 · Source§impl Read for Arc<File>
impl Read for Arc<File>
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error>
fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error>
Source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
read, except that it reads into a slice of buffers. Read moreSource§fn read_buf(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
read_buf)Source§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
can_vector)Source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
buf. Read moreSource§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
buf. Read more1.6.0 · Source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
buf. Read moreSource§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
read_buf)cursor. Read more1.0.0 · Source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Read. Read more§impl<T> RefCnt for Arc<T>
impl<T> RefCnt for Arc<T>
1.73.0 · Source§impl Seek for Arc<File>
impl Seek for Arc<File>
Source§fn seek(&mut self, pos: SeekFrom) -> Result<u64, Error>
fn seek(&mut self, pos: SeekFrom) -> Result<u64, Error>
Source§fn stream_len(&mut self) -> Result<u64, Error>
fn stream_len(&mut self) -> Result<u64, Error>
seek_stream_len)Source§fn stream_position(&mut self) -> Result<u64, Error>
fn stream_position(&mut self) -> Result<u64, Error>
Source§impl<T> Serialize for Arc<T>
This impl requires the "rc" Cargo feature of Serde.
impl<T> Serialize for Arc<T>
This impl requires the "rc" Cargo feature of Serde.
Serializing a data structure containing Arc will serialize a copy of
the contents of the Arc each time the Arc is referenced within the
data structure. Serialization will not attempt to deduplicate these
repeated data.
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Source§impl<T, U> SerializeAs<Arc<T>> for Arc<U>where
U: SerializeAs<T>,
impl<T, U> SerializeAs<Arc<T>> for Arc<U>where
U: SerializeAs<T>,
Source§fn serialize_as<S>(
source: &Arc<T>,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize_as<S>(
source: &Arc<T>,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Source§impl<T, U> SerializeAs<Pin<Arc<T>>> for Pin<Arc<U>>where
U: SerializeAs<T>,
impl<T, U> SerializeAs<Pin<Arc<T>>> for Pin<Arc<U>>where
U: SerializeAs<T>,
Source§fn serialize_as<S>(
source: &Pin<Arc<T>>,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize_as<S>(
source: &Pin<Arc<T>>,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
§impl<S> Subscriber for Arc<S>where
S: Subscriber + ?Sized,
impl<S> Subscriber for Arc<S>where
S: Subscriber + ?Sized,
§fn register_callsite(&self, metadata: &'static Metadata<'static>) -> Interest
fn register_callsite(&self, metadata: &'static Metadata<'static>) -> Interest
§fn max_level_hint(&self) -> Option<LevelFilter>
fn max_level_hint(&self) -> Option<LevelFilter>
Subscriber will
enable, or None, if the subscriber does not implement level-based
filtering or chooses not to implement this method. Read more§fn record_follows_from(&self, span: &Id, follows: &Id)
fn record_follows_from(&self, span: &Id, follows: &Id)
§fn event_enabled(&self, event: &Event<'_>) -> bool
fn event_enabled(&self, event: &Event<'_>) -> bool
Event] should be recorded. Read more§fn clone_span(&self, id: &Id) -> Id
fn clone_span(&self, id: &Id) -> Id
§fn drop_span(&self, id: Id)
fn drop_span(&self, id: Id)
Subscriber::try_close instead§fn current_span(&self) -> Current
fn current_span(&self) -> Current
§unsafe fn downcast_raw(&self, id: TypeId) -> Option<*const ()>
unsafe fn downcast_raw(&self, id: TypeId) -> Option<*const ()>
self is the same type as the provided TypeId, returns an untyped
*const pointer to that type. Otherwise, returns None. Read more§fn on_register_dispatch(&self, subscriber: &Dispatch)
fn on_register_dispatch(&self, subscriber: &Dispatch)
Dispatch]. Read more§impl ToDFSchema for Arc<Schema>
impl ToDFSchema for Arc<Schema>
§fn to_dfschema(self) -> Result<DFSchema, DataFusionError>
fn to_dfschema(self) -> Result<DFSchema, DataFusionError>
§fn to_dfschema_ref(self) -> Result<Arc<DFSchema>, DataFusionError>
fn to_dfschema_ref(self) -> Result<Arc<DFSchema>, DataFusionError>
§impl ToDFSchema for Arc<Schema>
impl ToDFSchema for Arc<Schema>
§fn to_dfschema(self) -> Result<DFSchema, DataFusionError>
fn to_dfschema(self) -> Result<DFSchema, DataFusionError>
§fn to_dfschema_ref(self) -> Result<Arc<DFSchema>, DataFusionError>
fn to_dfschema_ref(self) -> Result<Arc<DFSchema>, DataFusionError>
§impl<T> ToRedisArgs for Arc<T>where
T: ToRedisArgs,
impl<T> ToRedisArgs for Arc<T>where
T: ToRedisArgs,
§fn write_redis_args<W>(&self, out: &mut W)where
W: RedisWrite + ?Sized,
fn write_redis_args<W>(&self, out: &mut W)where
W: RedisWrite + ?Sized,
§fn num_of_args(&self) -> usize
fn num_of_args(&self) -> usize
§fn describe_numeric_behavior(&self) -> NumericBehavior
fn describe_numeric_behavior(&self) -> NumericBehavior
INCR vs INCRBYFLOAT).§impl<T> TreeNode for Arc<T>where
T: DynTreeNode + ?Sized,
Blanket implementation for any Arc<T> where T implements [DynTreeNode]
(such as Arc<dyn PhysicalExpr>).
impl<T> TreeNode for Arc<T>where
T: DynTreeNode + ?Sized,
Blanket implementation for any Arc<T> where T implements [DynTreeNode]
(such as Arc<dyn PhysicalExpr>).
§fn apply_children<'n, F>(
&'n self,
f: F,
) -> Result<TreeNodeRecursion, DataFusionError>
fn apply_children<'n, F>( &'n self, f: F, ) -> Result<TreeNodeRecursion, DataFusionError>
§fn map_children<F>(self, f: F) -> Result<Transformed<Arc<T>>, DataFusionError>
fn map_children<F>(self, f: F) -> Result<Transformed<Arc<T>>, DataFusionError>
§fn visit<'n, V>(
&'n self,
visitor: &mut V,
) -> Result<TreeNodeRecursion, DataFusionError>where
V: TreeNodeVisitor<'n, Node = Self>,
fn visit<'n, V>(
&'n self,
visitor: &mut V,
) -> Result<TreeNodeRecursion, DataFusionError>where
V: TreeNodeVisitor<'n, Node = Self>,
TreeNodeVisitor], performing a
depth-first walk of the node and its children. Read more§fn rewrite<R>(
self,
rewriter: &mut R,
) -> Result<Transformed<Self>, DataFusionError>where
R: TreeNodeRewriter<Node = Self>,
fn rewrite<R>(
self,
rewriter: &mut R,
) -> Result<Transformed<Self>, DataFusionError>where
R: TreeNodeRewriter<Node = Self>,
TreeNodeRewriter], performing a
depth-first walk of the node and its children. Read more§fn apply<'n, F>(&'n self, f: F) -> Result<TreeNodeRecursion, DataFusionError>
fn apply<'n, F>(&'n self, f: F) -> Result<TreeNodeRecursion, DataFusionError>
f to the node then each of its children, recursively (a
top-down, pre-order traversal). Read more§fn transform<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
fn transform<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
f
(a bottom-up post-order traversal). Read more§fn transform_down<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
fn transform_down<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
f in a top-down (pre-order)
fashion. Read more§fn transform_up<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
fn transform_up<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
f in a bottom-up (post-order)
fashion. Read more§fn transform_down_up<FD, FU>(
self,
f_down: FD,
f_up: FU,
) -> Result<Transformed<Self>, DataFusionError>
fn transform_down_up<FD, FU>( self, f_down: FD, f_up: FU, ) -> Result<Transformed<Self>, DataFusionError>
f_down while traversing the tree top-down
(pre-order), and using f_up while traversing the tree bottom-up
(post-order). Read more§impl<T> TreeNode for Arc<T>where
T: DynTreeNode + ?Sized,
Blanket implementation for any Arc<T> where T implements [DynTreeNode]
(such as Arc<dyn PhysicalExpr>).
impl<T> TreeNode for Arc<T>where
T: DynTreeNode + ?Sized,
Blanket implementation for any Arc<T> where T implements [DynTreeNode]
(such as Arc<dyn PhysicalExpr>).
§fn apply_children<'n, F>(
&'n self,
f: F,
) -> Result<TreeNodeRecursion, DataFusionError>
fn apply_children<'n, F>( &'n self, f: F, ) -> Result<TreeNodeRecursion, DataFusionError>
§fn map_children<F>(self, f: F) -> Result<Transformed<Arc<T>>, DataFusionError>
fn map_children<F>(self, f: F) -> Result<Transformed<Arc<T>>, DataFusionError>
§fn visit<'n, V>(
&'n self,
visitor: &mut V,
) -> Result<TreeNodeRecursion, DataFusionError>where
V: TreeNodeVisitor<'n, Node = Self>,
fn visit<'n, V>(
&'n self,
visitor: &mut V,
) -> Result<TreeNodeRecursion, DataFusionError>where
V: TreeNodeVisitor<'n, Node = Self>,
TreeNodeVisitor], performing a
depth-first walk of the node and its children. Read more§fn rewrite<R>(
self,
rewriter: &mut R,
) -> Result<Transformed<Self>, DataFusionError>where
R: TreeNodeRewriter<Node = Self>,
fn rewrite<R>(
self,
rewriter: &mut R,
) -> Result<Transformed<Self>, DataFusionError>where
R: TreeNodeRewriter<Node = Self>,
TreeNodeRewriter], performing a
depth-first walk of the node and its children. Read more§fn apply<'n, F>(&'n self, f: F) -> Result<TreeNodeRecursion, DataFusionError>
fn apply<'n, F>(&'n self, f: F) -> Result<TreeNodeRecursion, DataFusionError>
f to the node then each of its children, recursively (a
top-down, pre-order traversal). Read more§fn transform<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
fn transform<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
f
(a bottom-up post-order traversal). Read more§fn transform_down<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
fn transform_down<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
f in a top-down (pre-order)
fashion. Read more§fn transform_up<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
fn transform_up<F>(self, f: F) -> Result<Transformed<Self>, DataFusionError>
f in a bottom-up (post-order)
fashion. Read more§fn transform_down_up<FD, FU>(
self,
f_down: FD,
f_up: FU,
) -> Result<Transformed<Self>, DataFusionError>
fn transform_down_up<FD, FU>( self, f_down: FD, f_up: FU, ) -> Result<Transformed<Self>, DataFusionError>
f_down while traversing the tree top-down
(pre-order), and using f_up while traversing the tree bottom-up
(post-order). Read more§impl<'a, T, C> TreeNodeContainer<'a, T> for Arc<C>where
T: 'a,
C: TreeNodeContainer<'a, T> + Clone,
impl<'a, T, C> TreeNodeContainer<'a, T> for Arc<C>where
T: 'a,
C: TreeNodeContainer<'a, T> + Clone,
§fn apply_elements<F>(
&'a self,
f: F,
) -> Result<TreeNodeRecursion, DataFusionError>
fn apply_elements<F>( &'a self, f: F, ) -> Result<TreeNodeRecursion, DataFusionError>
f to all elements of the container.
This method is usually called from [TreeNode::apply_children] implementations as
a node is actually a container of the node’s children.§fn map_elements<F>(self, f: F) -> Result<Transformed<Arc<C>>, DataFusionError>
fn map_elements<F>(self, f: F) -> Result<Transformed<Arc<C>>, DataFusionError>
f.
This method is usually called from [TreeNode::map_children] implementations as
a node is actually a container of the node’s children.§impl<'a, T, C> TreeNodeContainer<'a, T> for Arc<C>where
T: 'a,
C: TreeNodeContainer<'a, T> + Clone,
impl<'a, T, C> TreeNodeContainer<'a, T> for Arc<C>where
T: 'a,
C: TreeNodeContainer<'a, T> + Clone,
§fn apply_elements<F>(
&'a self,
f: F,
) -> Result<TreeNodeRecursion, DataFusionError>
fn apply_elements<F>( &'a self, f: F, ) -> Result<TreeNodeRecursion, DataFusionError>
f to all elements of the container.
This method is usually called from [TreeNode::apply_children] implementations as
a node is actually a container of the node’s children.§fn map_elements<F>(self, f: F) -> Result<Transformed<Arc<C>>, DataFusionError>
fn map_elements<F>(self, f: F) -> Result<Transformed<Arc<C>>, DataFusionError>
f.
This method is usually called from [TreeNode::map_children] implementations as
a node is actually a container of the node’s children.1.43.0 · Source§impl<T, A, const N: usize> TryFrom<Arc<[T], A>> for Arc<[T; N], A>where
A: Allocator,
impl<T, A, const N: usize> TryFrom<Arc<[T], A>> for Arc<[T; N], A>where
A: Allocator,
Source§impl WithDataType for Arc<Bytes>
impl WithDataType for Arc<Bytes>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<Date>
impl WithDataType for Arc<Date>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<Decimal>
impl WithDataType for Arc<Decimal>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<Decimal>
impl WithDataType for Arc<Decimal>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<Int256>
impl WithDataType for Arc<Int256>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<Interval>
impl WithDataType for Arc<Interval>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<JsonbVal>
impl WithDataType for Arc<JsonbVal>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<OrderedFloat<f32>>
impl WithDataType for Arc<OrderedFloat<f32>>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<OrderedFloat<f64>>
impl WithDataType for Arc<OrderedFloat<f64>>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<Serial>
impl WithDataType for Arc<Serial>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<String>
impl WithDataType for Arc<String>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<Time>
impl WithDataType for Arc<Time>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<Timestamp>
impl WithDataType for Arc<Timestamp>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<Timestamptz>
impl WithDataType for Arc<Timestamptz>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<Vec<u8>>
impl WithDataType for Arc<Vec<u8>>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<bool>
impl WithDataType for Arc<bool>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<char>
impl WithDataType for Arc<char>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<f32>
impl WithDataType for Arc<f32>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<f64>
impl WithDataType for Arc<f64>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<i16>
impl WithDataType for Arc<i16>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<i32>
impl WithDataType for Arc<i32>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.Source§impl WithDataType for Arc<i64>
impl WithDataType for Arc<i64>
Source§fn default_data_type() -> DataType
fn default_data_type() -> DataType
DataType for the rust type.1.73.0 · Source§impl Write for Arc<File>
impl Write for Arc<File>
Source§fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
Source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector)Source§fn flush(&mut self) -> Result<(), Error>
fn flush(&mut self) -> Result<(), Error>
1.0.0 · Source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored)impl<T> CloneFromCell for Arc<T>where
T: ?Sized,
impl<T, U, A> CoerceUnsized<Arc<U, A>> for Arc<T, A>
impl<T, A> DerefPure for Arc<T, A>
impl<T, U> DispatchFromDyn<Arc<U>> for Arc<T>
impl<T, A> Eq for Arc<T, A>
impl<T, A> PinCoerceUnsized for Arc<T, A>
impl<T, A> Send for Arc<T, A>
impl<T, A> Sync for Arc<T, A>
impl<T, A> Unpin for Arc<T, A>
impl<T, A> UnwindSafe for Arc<T, A>
impl<T, A> UseCloned for Arc<T, A>
Auto Trait Implementations§
Blanket Implementations§
§impl<T, A, P> Access<T> for P
impl<T, A, P> Access<T> for P
§impl<A> AccessDyn for Awhere
A: Access<Reader = Box<dyn ReadDyn>, BlockingReader = Box<dyn BlockingRead>, Writer = Box<dyn WriteDyn>, BlockingWriter = Box<dyn BlockingWrite>, Lister = Box<dyn ListDyn>, BlockingLister = Box<dyn BlockingList>, Deleter = Box<dyn DeleteDyn>, BlockingDeleter = Box<dyn BlockingDelete>> + ?Sized,
impl<A> AccessDyn for Awhere
A: Access<Reader = Box<dyn ReadDyn>, BlockingReader = Box<dyn BlockingRead>, Writer = Box<dyn WriteDyn>, BlockingWriter = Box<dyn BlockingWrite>, Lister = Box<dyn ListDyn>, BlockingLister = Box<dyn BlockingList>, Deleter = Box<dyn DeleteDyn>, BlockingDeleter = Box<dyn BlockingDelete>> + ?Sized,
§fn info_dyn(&self) -> Arc<AccessorInfo>
fn info_dyn(&self) -> Arc<AccessorInfo>
Accessor::info§fn create_dir_dyn<'a>(
&'a self,
path: &'a str,
args: OpCreateDir,
) -> Pin<Box<dyn Future<Output = Result<RpCreateDir, Error>> + Send + 'a>>
fn create_dir_dyn<'a>( &'a self, path: &'a str, args: OpCreateDir, ) -> Pin<Box<dyn Future<Output = Result<RpCreateDir, Error>> + Send + 'a>>
Accessor::create_dir§fn stat_dyn<'a>(
&'a self,
path: &'a str,
args: OpStat,
) -> Pin<Box<dyn Future<Output = Result<RpStat, Error>> + Send + 'a>>
fn stat_dyn<'a>( &'a self, path: &'a str, args: OpStat, ) -> Pin<Box<dyn Future<Output = Result<RpStat, Error>> + Send + 'a>>
Accessor::stat§fn read_dyn<'a>(
&'a self,
path: &'a str,
args: OpRead,
) -> Pin<Box<dyn Future<Output = Result<(RpRead, Box<dyn ReadDyn>), Error>> + Send + 'a>>
fn read_dyn<'a>( &'a self, path: &'a str, args: OpRead, ) -> Pin<Box<dyn Future<Output = Result<(RpRead, Box<dyn ReadDyn>), Error>> + Send + 'a>>
Accessor::read§fn write_dyn<'a>(
&'a self,
path: &'a str,
args: OpWrite,
) -> Pin<Box<dyn Future<Output = Result<(RpWrite, Box<dyn WriteDyn>), Error>> + Send + 'a>>
fn write_dyn<'a>( &'a self, path: &'a str, args: OpWrite, ) -> Pin<Box<dyn Future<Output = Result<(RpWrite, Box<dyn WriteDyn>), Error>> + Send + 'a>>
Accessor::write§fn delete_dyn(
&self,
) -> Pin<Box<dyn Future<Output = Result<(RpDelete, Box<dyn DeleteDyn>), Error>> + Send + '_>>
fn delete_dyn( &self, ) -> Pin<Box<dyn Future<Output = Result<(RpDelete, Box<dyn DeleteDyn>), Error>> + Send + '_>>
Accessor::delete§fn list_dyn<'a>(
&'a self,
path: &'a str,
args: OpList,
) -> Pin<Box<dyn Future<Output = Result<(RpList, Box<dyn ListDyn>), Error>> + Send + 'a>>
fn list_dyn<'a>( &'a self, path: &'a str, args: OpList, ) -> Pin<Box<dyn Future<Output = Result<(RpList, Box<dyn ListDyn>), Error>> + Send + 'a>>
Accessor::list§fn copy_dyn<'a>(
&'a self,
from: &'a str,
to: &'a str,
args: OpCopy,
) -> Pin<Box<dyn Future<Output = Result<RpCopy, Error>> + Send + 'a>>
fn copy_dyn<'a>( &'a self, from: &'a str, to: &'a str, args: OpCopy, ) -> Pin<Box<dyn Future<Output = Result<RpCopy, Error>> + Send + 'a>>
Accessor::copy§fn rename_dyn<'a>(
&'a self,
from: &'a str,
to: &'a str,
args: OpRename,
) -> Pin<Box<dyn Future<Output = Result<RpRename, Error>> + Send + 'a>>
fn rename_dyn<'a>( &'a self, from: &'a str, to: &'a str, args: OpRename, ) -> Pin<Box<dyn Future<Output = Result<RpRename, Error>> + Send + 'a>>
Accessor::rename§fn presign_dyn<'a>(
&'a self,
path: &'a str,
args: OpPresign,
) -> Pin<Box<dyn Future<Output = Result<RpPresign, Error>> + Send + 'a>>
fn presign_dyn<'a>( &'a self, path: &'a str, args: OpPresign, ) -> Pin<Box<dyn Future<Output = Result<RpPresign, Error>> + Send + 'a>>
Accessor::presign§fn blocking_create_dir_dyn(
&self,
path: &str,
args: OpCreateDir,
) -> Result<RpCreateDir, Error>
fn blocking_create_dir_dyn( &self, path: &str, args: OpCreateDir, ) -> Result<RpCreateDir, Error>
Accessor::blocking_create_dir§fn blocking_stat_dyn(&self, path: &str, args: OpStat) -> Result<RpStat, Error>
fn blocking_stat_dyn(&self, path: &str, args: OpStat) -> Result<RpStat, Error>
Accessor::blocking_stat§fn blocking_read_dyn(
&self,
path: &str,
args: OpRead,
) -> Result<(RpRead, Box<dyn BlockingRead>), Error>
fn blocking_read_dyn( &self, path: &str, args: OpRead, ) -> Result<(RpRead, Box<dyn BlockingRead>), Error>
Accessor::blocking_read§fn blocking_write_dyn(
&self,
path: &str,
args: OpWrite,
) -> Result<(RpWrite, Box<dyn BlockingWrite>), Error>
fn blocking_write_dyn( &self, path: &str, args: OpWrite, ) -> Result<(RpWrite, Box<dyn BlockingWrite>), Error>
Accessor::blocking_write§fn blocking_delete_dyn(
&self,
) -> Result<(RpDelete, Box<dyn BlockingDelete>), Error>
fn blocking_delete_dyn( &self, ) -> Result<(RpDelete, Box<dyn BlockingDelete>), Error>
Accessor::blocking_delete§fn blocking_list_dyn(
&self,
path: &str,
args: OpList,
) -> Result<(RpList, Box<dyn BlockingList>), Error>
fn blocking_list_dyn( &self, path: &str, args: OpList, ) -> Result<(RpList, Box<dyn BlockingList>), Error>
Accessor::blocking_list§fn blocking_copy_dyn(
&self,
from: &str,
to: &str,
args: OpCopy,
) -> Result<RpCopy, Error>
fn blocking_copy_dyn( &self, from: &str, to: &str, args: OpCopy, ) -> Result<RpCopy, Error>
Accessor::blocking_copy§fn blocking_rename_dyn(
&self,
from: &str,
to: &str,
args: OpRename,
) -> Result<RpRename, Error>
fn blocking_rename_dyn( &self, from: &str, to: &str, args: OpRename, ) -> Result<RpRename, Error>
Accessor::blocking_rename§impl<T> AsAny for T
impl<T> AsAny for T
§fn any_ref(&self) -> &(dyn Any + Sync + Send + 'static)
fn any_ref(&self) -> &(dyn Any + Sync + Send + 'static)
dyn Any reference to the object: Read more§fn as_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>
fn as_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>
Arc<dyn Any> reference to the object: Read more§fn into_any(self: Box<T>) -> Box<dyn Any + Sync + Send>
fn into_any(self: Box<T>) -> Box<dyn Any + Sync + Send>
Box<dyn Any>: Read more§fn type_name(&self) -> &'static str
fn type_name(&self) -> &'static str
std::any::type_name, since Any does not provide it and
Any::type_id is useless as a debugging aid (its Debug is just a mess of hex digits).§impl<A, T> AsBits<T> for A
impl<A, T> AsBits<T> for A
§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
§impl<T> AsReport for Twhere
T: Error,
impl<T> AsReport for Twhere
T: Error,
§fn as_report(&self) -> Report<'_>
fn as_report(&self) -> Report<'_>
Report] that formats the error and its sources in a
cleaned-up way. Read more§fn to_report_string(&self) -> String
fn to_report_string(&self) -> String
Report] and formats it in a compact way. Read more§fn to_report_string_with_backtrace(&self) -> String
fn to_report_string_with_backtrace(&self) -> String
Report] and formats it in a compact way,
including backtraces if available. Read more§fn to_report_string_pretty(&self) -> String
fn to_report_string_pretty(&self) -> String
Report] and formats it in a pretty way. Read more§fn to_report_string_pretty_with_backtrace(&self) -> String
fn to_report_string_pretty_with_backtrace(&self) -> String
Report] and formats it in a pretty way, Read more§impl<T> AsUncased for T
impl<T> AsUncased for T
§fn as_uncased(&self) -> &UncasedStr
fn as_uncased(&self) -> &UncasedStr
self to an [UncasedStr].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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Code for Twhere
T: Serialize + DeserializeOwned,
impl<T> Code for Twhere
T: Serialize + DeserializeOwned,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> Datum for Twhere
T: Array,
impl<T> Datum for Twhere
T: Array,
§impl<T> Datum for Twhere
T: Array,
impl<T> Datum for Twhere
T: Array,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T, A> DynAccess<T> for Awhere
A: Access<T>,
<A as Access<T>>::Guard: 'static,
impl<T, A> DynAccess<T> for Awhere
A: Access<T>,
<A as Access<T>>::Guard: 'static,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<T> ErrorIsFromTonicServerImpl for T
impl<T> ErrorIsFromTonicServerImpl for T
§fn is_from_tonic_server_impl(&self) -> bool
fn is_from_tonic_server_impl(&self) -> bool
ToTonicStatus::to_status]. Read more§impl<T> ExecutableCommand for T
impl<T> ExecutableCommand for T
§fn execute(&mut self, command: impl Command) -> Result<&mut T, Error>
fn execute(&mut self, command: impl Command) -> Result<&mut T, Error>
Executes the given command directly.
The given command its ANSI escape code will be written and flushed onto Self.
§Arguments
-
The command that you want to execute directly.
§Example
use std::io;
use crossterm::{ExecutableCommand, style::Print};
fn main() -> io::Result<()> {
// will be executed directly
io::stdout()
.execute(Print("sum:\n".to_string()))?
.execute(Print(format!("1 + 1= {} ", 1 + 1)))?;
Ok(())
// ==== Output ====
// sum:
// 1 + 1 = 2
}Have a look over at the Command API for more details.
§Notes
- In the case of UNIX and Windows 10, ANSI codes are written to the given ‘writer’.
- In case of Windows versions lower than 10, a direct WinAPI call will be made.
The reason for this is that Windows versions lower than 10 do not support ANSI codes,
and can therefore not be written to the given
writer. Therefore, there is no difference between execute and queue for those old Windows versions.
§impl<P> ExprSchema for P
impl<P> ExprSchema for P
§fn nullable(&self, col: &Column) -> Result<bool, DataFusionError>
fn nullable(&self, col: &Column) -> Result<bool, DataFusionError>
§fn data_type(&self, col: &Column) -> Result<&DataType, DataFusionError>
fn data_type(&self, col: &Column) -> Result<&DataType, DataFusionError>
§fn metadata(
&self,
col: &Column,
) -> Result<&HashMap<String, String>, DataFusionError>
fn metadata( &self, col: &Column, ) -> Result<&HashMap<String, String>, DataFusionError>
§fn data_type_and_nullable(
&self,
col: &Column,
) -> Result<(&DataType, bool), DataFusionError>
fn data_type_and_nullable( &self, col: &Column, ) -> Result<(&DataType, bool), DataFusionError>
§impl<P> ExprSchema for P
impl<P> ExprSchema for P
§fn nullable(&self, col: &Column) -> Result<bool, DataFusionError>
fn nullable(&self, col: &Column) -> Result<bool, DataFusionError>
§fn data_type(&self, col: &Column) -> Result<&DataType, DataFusionError>
fn data_type(&self, col: &Column) -> Result<&DataType, DataFusionError>
§fn metadata(
&self,
col: &Column,
) -> Result<&HashMap<String, String>, DataFusionError>
fn metadata( &self, col: &Column, ) -> Result<&HashMap<String, String>, DataFusionError>
§fn data_type_and_nullable(
&self,
col: &Column,
) -> Result<(&DataType, bool), DataFusionError>
fn data_type_and_nullable( &self, col: &Column, ) -> Result<(&DataType, bool), DataFusionError>
§impl<F, S> FilterExt<S> for Fwhere
F: Filter<S>,
impl<F, S> FilterExt<S> for Fwhere
F: Filter<S>,
§impl<R> FixedIntReader for Rwhere
R: Read,
impl<R> FixedIntReader for Rwhere
R: Read,
§fn read_fixedint<FI>(&mut self) -> Result<FI, Error>where
FI: FixedInt,
fn read_fixedint<FI>(&mut self) -> Result<FI, Error>where
FI: FixedInt,
FI. Read more§impl<W> FixedIntWriter for Wwhere
W: Write,
impl<W> FixedIntWriter for Wwhere
W: Write,
fn write_fixedint<FI>(&mut self, n: FI) -> Result<usize, Error>where
FI: FixedInt,
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> FromRow for Twhere
T: FromValue,
impl<T> FromRow for Twhere
T: FromValue,
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T, B1, B2> HttpService<B1> for T
impl<T, B1, B2> HttpService<B1> for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
§impl<Sp> LocalSpawnExt for Spwhere
Sp: LocalSpawn + ?Sized,
impl<Sp> LocalSpawnExt for Spwhere
Sp: LocalSpawn + ?Sized,
§fn spawn_local<Fut>(&self, future: Fut) -> Result<(), SpawnError>
fn spawn_local<Fut>(&self, future: Fut) -> Result<(), SpawnError>
() to
completion. Read more§impl<'a, M> MakeWriterExt<'a> for Mwhere
M: MakeWriter<'a>,
impl<'a, M> MakeWriterExt<'a> for Mwhere
M: MakeWriter<'a>,
§fn with_max_level(self, level: Level) -> WithMaxLevel<Self>where
Self: Sized,
fn with_max_level(self, level: Level) -> WithMaxLevel<Self>where
Self: Sized,
§fn with_min_level(self, level: Level) -> WithMinLevel<Self>where
Self: Sized,
fn with_min_level(self, level: Level) -> WithMinLevel<Self>where
Self: Sized,
§fn with_filter<F>(self, filter: F) -> WithFilter<Self, F>
fn with_filter<F>(self, filter: F) -> WithFilter<Self, F>
§fn or_else<W, B>(self, other: B) -> OrElse<Self, B>
fn or_else<W, B>(self, other: B) -> OrElse<Self, B>
self with another type implementing [MakeWriter], returning
a new [MakeWriter] that calls other’s make_writer if self’s
make_writer returns OptionalWriter::none. Read more§impl<M> MetricVecRelabelExt for M
impl<M> MetricVecRelabelExt for M
§fn relabel(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
RelabeledMetricVec::with_metric_level].§fn relabel_n(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
relabel_num: usize,
) -> RelabeledMetricVec<M>
fn relabel_n( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, relabel_num: usize, ) -> RelabeledMetricVec<M>
RelabeledMetricVec::with_metric_level_relabel_n].§fn relabel_debug_1(
self,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel_debug_1( self, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
RelabeledMetricVec::with_metric_level_relabel_n] with metric_level set to
MetricLevel::Debug and relabel_num set to 1.§impl<T> ObjectStoreRetryExt for Twhere
T: ObjectStore + ?Sized,
impl<T> ObjectStoreRetryExt for Twhere
T: ObjectStore + ?Sized,
§fn put_with_retries<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
bytes: PutPayload,
max_retries: usize,
) -> Pin<Box<dyn Future<Output = Result<PutResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: Sync + 'async_trait,
fn put_with_retries<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
bytes: PutPayload,
max_retries: usize,
) -> Pin<Box<dyn Future<Output = Result<PutResult, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: Sync + 'async_trait,
§fn delete_with_retries<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
max_retries: usize,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: Sync + 'async_trait,
fn delete_with_retries<'life0, 'life1, 'async_trait>(
&'life0 self,
location: &'life1 Path,
max_retries: usize,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: Sync + 'async_trait,
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PrettyHex for T
impl<T> PrettyHex for T
§impl<Q> Query for Qwhere
Q: AsQuery,
impl<Q> Query for Qwhere
Q: AsQuery,
§fn run<'a, 't, C>(
self,
conn: C,
) -> Pin<Box<dyn Future<Output = Result<QueryResult<'a, 't, TextProtocol>, Error>> + Send + 'a>>where
't: 'a,
Q: 'a,
C: ToConnection<'a, 't> + 'a,
fn run<'a, 't, C>(
self,
conn: C,
) -> Pin<Box<dyn Future<Output = Result<QueryResult<'a, 't, TextProtocol>, Error>> + Send + 'a>>where
't: 'a,
Q: 'a,
C: ToConnection<'a, 't> + 'a,
Queryable::query_iter.§fn first<'a, 't, T, C>(
self,
conn: C,
) -> Pin<Box<dyn Future<Output = Result<Option<T>, Error>> + Send + 'a>>where
't: 'a,
Self: 'a,
C: ToConnection<'a, 't> + 'a,
T: FromRow + Send + 'static,
fn first<'a, 't, T, C>(
self,
conn: C,
) -> Pin<Box<dyn Future<Output = Result<Option<T>, Error>> + Send + 'a>>where
't: 'a,
Self: 'a,
C: ToConnection<'a, 't> + 'a,
T: FromRow + Send + 'static,
Queryable::query_first.§fn fetch<'a, 't, T, C>(
self,
conn: C,
) -> Pin<Box<dyn Future<Output = Result<Vec<T>, Error>> + Send + 'a>>where
't: 'a,
Self: 'a,
C: ToConnection<'a, 't> + 'a,
T: FromRow + Send + 'static,
fn fetch<'a, 't, T, C>(
self,
conn: C,
) -> Pin<Box<dyn Future<Output = Result<Vec<T>, Error>> + Send + 'a>>where
't: 'a,
Self: 'a,
C: ToConnection<'a, 't> + 'a,
T: FromRow + Send + 'static,
Queryable::query.§fn reduce<'a, 't, T, U, F, C>(
self,
conn: C,
init: U,
next: F,
) -> Pin<Box<dyn Future<Output = Result<U, Error>> + Send + 'a>>
fn reduce<'a, 't, T, U, F, C>( self, conn: C, init: U, next: F, ) -> Pin<Box<dyn Future<Output = Result<U, Error>> + Send + 'a>>
Queryable::query_fold.§fn map<'a, 't, T, U, F, C>(
self,
conn: C,
map: F,
) -> Pin<Box<dyn Future<Output = Result<Vec<U>, Error>> + Send + 'a>>
fn map<'a, 't, T, U, F, C>( self, conn: C, map: F, ) -> Pin<Box<dyn Future<Output = Result<Vec<U>, Error>> + Send + 'a>>
Queryable::query_map.§impl<T> QueueableCommand for T
impl<T> QueueableCommand for T
§fn queue(&mut self, command: impl Command) -> Result<&mut T, Error>
fn queue(&mut self, command: impl Command) -> Result<&mut T, Error>
Queues the given command for further execution.
Queued commands will be executed in the following cases:
- When
flushis called manually on the given type implementingio::Write. - The terminal will
flushautomatically if the buffer is full. - Each line is flushed in case of
stdout, because it is line buffered.
§Arguments
-
The command that you want to queue for later execution.
§Examples
use std::io::{self, Write};
use crossterm::{QueueableCommand, style::Print};
fn main() -> io::Result<()> {
let mut stdout = io::stdout();
// `Print` will executed executed when `flush` is called.
stdout
.queue(Print("foo 1\n".to_string()))?
.queue(Print("foo 2".to_string()))?;
// some other code (no execution happening here) ...
// when calling `flush` on `stdout`, all commands will be written to the stdout and therefore executed.
stdout.flush()?;
Ok(())
// ==== Output ====
// foo 1
// foo 2
}Have a look over at the Command API for more details.
§Notes
- In the case of UNIX and Windows 10, ANSI codes are written to the given ‘writer’.
- In case of Windows versions lower than 10, a direct WinAPI call will be made.
The reason for this is that Windows versions lower than 10 do not support ANSI codes,
and can therefore not be written to the given
writer. Therefore, there is no difference between execute and queue for those old Windows versions.
§impl<R> ReadBytesExt for R
impl<R> ReadBytesExt for R
§fn read_u8(&mut self) -> Result<u8, Error>
fn read_u8(&mut self) -> Result<u8, Error>
§fn read_i8(&mut self) -> Result<i8, Error>
fn read_i8(&mut self) -> Result<i8, Error>
§fn read_u16<T>(&mut self) -> Result<u16, Error>where
T: ByteOrder,
fn read_u16<T>(&mut self) -> Result<u16, Error>where
T: ByteOrder,
§fn read_i16<T>(&mut self) -> Result<i16, Error>where
T: ByteOrder,
fn read_i16<T>(&mut self) -> Result<i16, Error>where
T: ByteOrder,
§fn read_u24<T>(&mut self) -> Result<u32, Error>where
T: ByteOrder,
fn read_u24<T>(&mut self) -> Result<u32, Error>where
T: ByteOrder,
§fn read_i24<T>(&mut self) -> Result<i32, Error>where
T: ByteOrder,
fn read_i24<T>(&mut self) -> Result<i32, Error>where
T: ByteOrder,
§fn read_u32<T>(&mut self) -> Result<u32, Error>where
T: ByteOrder,
fn read_u32<T>(&mut self) -> Result<u32, Error>where
T: ByteOrder,
§fn read_i32<T>(&mut self) -> Result<i32, Error>where
T: ByteOrder,
fn read_i32<T>(&mut self) -> Result<i32, Error>where
T: ByteOrder,
§fn read_u48<T>(&mut self) -> Result<u64, Error>where
T: ByteOrder,
fn read_u48<T>(&mut self) -> Result<u64, Error>where
T: ByteOrder,
§fn read_i48<T>(&mut self) -> Result<i64, Error>where
T: ByteOrder,
fn read_i48<T>(&mut self) -> Result<i64, Error>where
T: ByteOrder,
§fn read_u64<T>(&mut self) -> Result<u64, Error>where
T: ByteOrder,
fn read_u64<T>(&mut self) -> Result<u64, Error>where
T: ByteOrder,
§fn read_i64<T>(&mut self) -> Result<i64, Error>where
T: ByteOrder,
fn read_i64<T>(&mut self) -> Result<i64, Error>where
T: ByteOrder,
§fn read_u128<T>(&mut self) -> Result<u128, Error>where
T: ByteOrder,
fn read_u128<T>(&mut self) -> Result<u128, Error>where
T: ByteOrder,
§fn read_i128<T>(&mut self) -> Result<i128, Error>where
T: ByteOrder,
fn read_i128<T>(&mut self) -> Result<i128, Error>where
T: ByteOrder,
§fn read_uint<T>(&mut self, nbytes: usize) -> Result<u64, Error>where
T: ByteOrder,
fn read_uint<T>(&mut self, nbytes: usize) -> Result<u64, Error>where
T: ByteOrder,
§fn read_int<T>(&mut self, nbytes: usize) -> Result<i64, Error>where
T: ByteOrder,
fn read_int<T>(&mut self, nbytes: usize) -> Result<i64, Error>where
T: ByteOrder,
§fn read_uint128<T>(&mut self, nbytes: usize) -> Result<u128, Error>where
T: ByteOrder,
fn read_uint128<T>(&mut self, nbytes: usize) -> Result<u128, Error>where
T: ByteOrder,
§fn read_int128<T>(&mut self, nbytes: usize) -> Result<i128, Error>where
T: ByteOrder,
fn read_int128<T>(&mut self, nbytes: usize) -> Result<i128, Error>where
T: ByteOrder,
§fn read_f32<T>(&mut self) -> Result<f32, Error>where
T: ByteOrder,
fn read_f32<T>(&mut self) -> Result<f32, Error>where
T: ByteOrder,
§fn read_f64<T>(&mut self) -> Result<f64, Error>where
T: ByteOrder,
fn read_f64<T>(&mut self) -> Result<f64, Error>where
T: ByteOrder,
§fn read_u16_into<T>(&mut self, dst: &mut [u16]) -> Result<(), Error>where
T: ByteOrder,
fn read_u16_into<T>(&mut self, dst: &mut [u16]) -> Result<(), Error>where
T: ByteOrder,
§fn read_u32_into<T>(&mut self, dst: &mut [u32]) -> Result<(), Error>where
T: ByteOrder,
fn read_u32_into<T>(&mut self, dst: &mut [u32]) -> Result<(), Error>where
T: ByteOrder,
§fn read_u64_into<T>(&mut self, dst: &mut [u64]) -> Result<(), Error>where
T: ByteOrder,
fn read_u64_into<T>(&mut self, dst: &mut [u64]) -> Result<(), Error>where
T: ByteOrder,
§fn read_u128_into<T>(&mut self, dst: &mut [u128]) -> Result<(), Error>where
T: ByteOrder,
fn read_u128_into<T>(&mut self, dst: &mut [u128]) -> Result<(), Error>where
T: ByteOrder,
§fn read_i8_into(&mut self, dst: &mut [i8]) -> Result<(), Error>
fn read_i8_into(&mut self, dst: &mut [i8]) -> Result<(), Error>
§fn read_i16_into<T>(&mut self, dst: &mut [i16]) -> Result<(), Error>where
T: ByteOrder,
fn read_i16_into<T>(&mut self, dst: &mut [i16]) -> Result<(), Error>where
T: ByteOrder,
§fn read_i32_into<T>(&mut self, dst: &mut [i32]) -> Result<(), Error>where
T: ByteOrder,
fn read_i32_into<T>(&mut self, dst: &mut [i32]) -> Result<(), Error>where
T: ByteOrder,
§fn read_i64_into<T>(&mut self, dst: &mut [i64]) -> Result<(), Error>where
T: ByteOrder,
fn read_i64_into<T>(&mut self, dst: &mut [i64]) -> Result<(), Error>where
T: ByteOrder,
§fn read_i128_into<T>(&mut self, dst: &mut [i128]) -> Result<(), Error>where
T: ByteOrder,
fn read_i128_into<T>(&mut self, dst: &mut [i128]) -> Result<(), Error>where
T: ByteOrder,
§fn read_f32_into<T>(&mut self, dst: &mut [f32]) -> Result<(), Error>where
T: ByteOrder,
fn read_f32_into<T>(&mut self, dst: &mut [f32]) -> Result<(), Error>where
T: ByteOrder,
§fn read_f32_into_unchecked<T>(&mut self, dst: &mut [f32]) -> Result<(), Error>where
T: ByteOrder,
fn read_f32_into_unchecked<T>(&mut self, dst: &mut [f32]) -> Result<(), Error>where
T: ByteOrder,
read_f32_into instead§impl<T> ReadMysqlExt for Twhere
T: ReadBytesExt,
impl<T> ReadMysqlExt for Twhere
T: ReadBytesExt,
Source§impl<T> SameOrElseExt for Twhere
T: Eq,
impl<T> SameOrElseExt for Twhere
T: Eq,
Source§fn same_or_else(self, other: T, f: impl FnOnce() -> T) -> T
fn same_or_else(self, other: T, f: impl FnOnce() -> T) -> T
self and other are equal, if so, return self, otherwise return the result of f().§impl<T> Scope for T
impl<T> Scope for T
§impl<T> Source for T
impl<T> Source for T
§type Slice<'a> = <<T as Deref>::Target as Source>::Slice<'a>
where
T: 'a
type Slice<'a> = <<T as Deref>::Target as Source>::Slice<'a> where T: 'a
Source can be sliced into.§fn read<'a, Chunk>(&'a self, offset: usize) -> Option<Chunk>where
Chunk: Chunk<'a>,
fn read<'a, Chunk>(&'a self, offset: usize) -> Option<Chunk>where
Chunk: Chunk<'a>,
None when reading
out of bounds would occur. Read more§unsafe fn read_byte_unchecked(&self, offset: usize) -> u8
unsafe fn read_byte_unchecked(&self, offset: usize) -> u8
§fn slice(&self, range: Range<usize>) -> Option<<T as Source>::Slice<'_>>
fn slice(&self, range: Range<usize>) -> Option<<T as Source>::Slice<'_>>
slice::get(range). Read more§unsafe fn slice_unchecked(
&self,
range: Range<usize>,
) -> <T as Source>::Slice<'_>
unsafe fn slice_unchecked( &self, range: Range<usize>, ) -> <T as Source>::Slice<'_>
slice::get_unchecked(range). Read more§fn is_boundary(&self, index: usize) -> bool
fn is_boundary(&self, index: usize) -> bool
§fn find_boundary(&self, index: usize) -> usize
fn find_boundary(&self, index: usize) -> usize
&str sources attempts to find the closest char boundary at which source
can be sliced, starting from index. Read more§impl<Sp> SpawnExt for Spwhere
Sp: Spawn + ?Sized,
impl<Sp> SpawnExt for Spwhere
Sp: Spawn + ?Sized,
§fn spawn<Fut>(&self, future: Fut) -> Result<(), SpawnError>
fn spawn<Fut>(&self, future: Fut) -> Result<(), SpawnError>
() to
completion. Read more§impl<S> SubscriberExt for Swhere
S: Subscriber,
impl<S> SubscriberExt for Swhere
S: Subscriber,
§impl<T> SubscriberInitExt for Twhere
T: Into<Dispatch>,
impl<T> SubscriberInitExt for Twhere
T: Into<Dispatch>,
§fn set_default(self) -> DefaultGuard
fn set_default(self) -> DefaultGuard
self as the default subscriber in the current scope, returning a
guard that will unset it when dropped. Read more§fn try_init(self) -> Result<(), TryInitError>
fn try_init(self) -> Result<(), TryInitError>
self as the global default subscriber in the current
scope, returning an error if one is already set. Read more§fn init(self)
fn init(self)
self as the global default subscriber in the current
scope, panicking if this fails. Read more§impl<W> SynchronizedUpdate for W
impl<W> SynchronizedUpdate for W
§fn sync_update<T>(
&mut self,
operations: impl FnOnce(&mut W) -> T,
) -> Result<T, Error>
fn sync_update<T>( &mut self, operations: impl FnOnce(&mut W) -> T, ) -> Result<T, Error>
Performs a set of actions within a synchronous update.
Updates will be suspended in the terminal, the function will be executed against self, updates will be resumed, and a flush will be performed.
§Arguments
-
Function
A function that performs the operations that must execute in a synchronized update.
§Examples
use std::io;
use crossterm::{ExecutableCommand, SynchronizedUpdate, style::Print};
fn main() -> io::Result<()> {
let mut stdout = io::stdout();
stdout.sync_update(|stdout| {
stdout.execute(Print("foo 1\n".to_string()))?;
stdout.execute(Print("foo 2".to_string()))?;
// The effects of the print command will not be present in the terminal
// buffer, but not visible in the terminal.
std::io::Result::Ok(())
})?;
// The effects of the commands will be visible.
Ok(())
// ==== Output ====
// foo 1
// foo 2
}§Notes
This command is performed only using ANSI codes, and will do nothing on terminals that do not support ANSI codes, or this specific extension.
When rendering the screen of the terminal, the Emulator usually iterates through each visible grid cell and renders its current state. With applications updating the screen a at higher frequency this can cause tearing.
This mode attempts to mitigate that.
When the synchronization mode is enabled following render calls will keep rendering the last rendered state. The terminal Emulator keeps processing incoming text and sequences. When the synchronized update mode is disabled again the renderer may fetch the latest screen buffer state again, effectively avoiding the tearing effect by unintentionally rendering in the middle a of an application screen update.
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.Source§impl<T> ToHex for T
impl<T> ToHex for T
Source§fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
self into the result. Lower case
letters are used (e.g. f9b4ca)Source§fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
self into the result. Upper case
letters are used (e.g. F9B4CA)§impl<T> ToRootSpan for Twhere
T: Display,
impl<T> ToRootSpan for Twhere
T: Display,
§fn to_root_span(&self) -> Span
fn to_root_span(&self) -> Span
Span] that can be used as the root of an await-tree.§impl<T> ToTonicStatus for T
impl<T> ToTonicStatus for T
§fn to_status_unnamed(&self, code: Code) -> Status
fn to_status_unnamed(&self, code: Code) -> Status
tonic::Status with the given tonic::Code without specifying
the service name. Prefer [to_status] if possible. Read more