Skip to main content

SyncView

Struct SyncView 

Source
pub struct SyncView<T>
where T: ?Sized,
{ /* private fields */ }
🔬This is a nightly-only experimental API. (exclusive_wrapper)
Expand description

SyncView provides mutable access, also referred to as exclusive access to the underlying value. However, it only permits immutable, or shared access to the underlying value when that value is Sync.

While this may seem not very useful, it allows SyncView to unconditionally implement Sync. Indeed, the safety requirements of Sync state that for SyncView to be Sync, it must be sound to share across threads, that is, it must be sound for &SyncView to cross thread boundaries. By design, a &SyncView<T> for non-Sync T has no API whatsoever, making it useless, thus harmless, thus memory safe.

Certain constructs like Futures can only be used with exclusive access, and are often Send but not Sync, so SyncView can be used as hint to the Rust compiler that something is Sync in practice.

§Examples

Using a non-Sync future prevents the wrapping struct from being Sync:

use core::cell::Cell;

async fn other() {}
fn assert_sync<T: Sync>(t: T) {}
struct State<F> {
    future: F
}

assert_sync(State {
    future: async {
        let cell = Cell::new(1);
        let cell_ref = &cell;
        other().await;
        let value = cell_ref.get();
    }
});

SyncView ensures the struct is Sync without stripping the future of its functionality:

#![feature(exclusive_wrapper)]
use core::cell::Cell;
use core::sync::SyncView;

async fn other() {}
fn assert_sync<T: Sync>(t: T) {}
struct State<F> {
    future: SyncView<F>
}

assert_sync(State {
    future: SyncView::new(async {
        let cell = Cell::new(1);
        let cell_ref = &cell;
        other().await;
        let value = cell_ref.get();
    })
});

§Parallels with a mutex

In some sense, SyncView can be thought of as a compile-time version of a mutex, as the borrow-checker guarantees that only one &mut can exist for any value. This is a parallel with the fact that & and &mut references together can be thought of as a compile-time version of a read-write lock.

Implementations§

Source§

impl<T> SyncView<T>

Source

pub const fn new(t: T) -> SyncView<T>

🔬This is a nightly-only experimental API. (exclusive_wrapper)

Wrap a value in an SyncView

Source

pub const fn into_inner(self) -> T

🔬This is a nightly-only experimental API. (exclusive_wrapper)

Unwrap the value contained in the SyncView

Source§

impl<T> SyncView<T>
where T: ?Sized,

Source

pub const fn as_pin_mut(self: Pin<&mut SyncView<T>>) -> Pin<&mut T>

🔬This is a nightly-only experimental API. (exclusive_wrapper)

Gets pinned exclusive access to the underlying value.

SyncView is considered to structurally pin the underlying value, which means unpinned SyncViews can produce unpinned access to the underlying value, but pinned SyncViews only produce pinned access to the underlying value.

Source

pub const fn from_mut(r: &mut T) -> &mut SyncView<T>

🔬This is a nightly-only experimental API. (exclusive_wrapper)

Build a mutable reference to an SyncView<T> from a mutable reference to a T. This allows you to skip building an SyncView with SyncView::new.

Source

pub const fn from_pin_mut(r: Pin<&mut T>) -> Pin<&mut SyncView<T>>

🔬This is a nightly-only experimental API. (exclusive_wrapper)

Build a pinned mutable reference to an SyncView<T> from a pinned mutable reference to a T. This allows you to skip building an SyncView with SyncView::new.

Source§

impl<T> SyncView<T>
where T: Sync + ?Sized,

Source

pub const fn as_pin_ref(self: Pin<&SyncView<T>>) -> Pin<&T>

🔬This is a nightly-only experimental API. (exclusive_wrapper)

Gets pinned shared access to the underlying value.

SyncView is considered to structurally pin the underlying value, which means unpinned SyncViews can produce unpinned access to the underlying value, but pinned SyncViews only produce pinned access to the underlying value.

Trait Implementations§

Source§

impl<T> AsMut<T> for SyncView<T>
where T: ?Sized,

Source§

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

Gets exclusive access to the underlying value.

Source§

impl<T> AsRef<T> for SyncView<T>
where T: Sync + ?Sized,

Source§

fn as_ref(&self) -> &T

Gets shared access to the underlying value.

Source§

impl<F, Args> AsyncFn<Args> for SyncView<F>
where F: Sync + AsyncFn<Args>, Args: Tuple,

Source§

extern "rust-call" fn async_call( &self, args: Args, ) -> <SyncView<F> as AsyncFnMut<Args>>::CallRefFuture<'_>

🔬This is a nightly-only experimental API. (async_fn_traits)
Call the AsyncFn, returning a future which may borrow from the called closure.
Source§

impl<F, Args> AsyncFnMut<Args> for SyncView<F>
where F: AsyncFnMut<Args>, Args: Tuple,

Source§

type CallRefFuture<'a> = <F as AsyncFnMut<Args>>::CallRefFuture<'a> where F: 'a

🔬This is a nightly-only experimental API. (async_fn_traits)
Source§

extern "rust-call" fn async_call_mut( &mut self, args: Args, ) -> <SyncView<F> as AsyncFnMut<Args>>::CallRefFuture<'_>

🔬This is a nightly-only experimental API. (async_fn_traits)
Call the AsyncFnMut, returning a future which may borrow from the called closure.
Source§

impl<F, Args> AsyncFnOnce<Args> for SyncView<F>
where F: AsyncFnOnce<Args>, Args: Tuple,

Source§

type CallOnceFuture = <F as AsyncFnOnce<Args>>::CallOnceFuture

🔬This is a nightly-only experimental API. (async_fn_traits)
Future returned by AsyncFnOnce::async_call_once.
Source§

type Output = <F as AsyncFnOnce<Args>>::Output

🔬This is a nightly-only experimental API. (async_fn_traits)
Output type of the called closure’s future.
Source§

extern "rust-call" fn async_call_once( self, args: Args, ) -> <SyncView<F> as AsyncFnOnce<Args>>::CallOnceFuture

🔬This is a nightly-only experimental API. (async_fn_traits)
Call the AsyncFnOnce, returning a future which may move out of the called closure.
Source§

impl<T> Clone for SyncView<T>
where T: Sync + Clone,

Source§

fn clone(&self) -> SyncView<T>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<T> Copy for SyncView<T>
where T: Sync + Copy,

Source§

impl<R, G> Coroutine<R> for SyncView<G>
where G: Coroutine<R> + ?Sized,

Source§

type Yield = <G as Coroutine<R>>::Yield

🔬This is a nightly-only experimental API. (coroutine_trait)
The type of value this coroutine yields. Read more
Source§

type Return = <G as Coroutine<R>>::Return

🔬This is a nightly-only experimental API. (coroutine_trait)
The type of value this coroutine returns. Read more
Source§

fn resume( self: Pin<&mut SyncView<G>>, arg: R, ) -> CoroutineState<<SyncView<G> as Coroutine<R>>::Yield, <SyncView<G> as Coroutine<R>>::Return>

🔬This is a nightly-only experimental API. (coroutine_trait)
Resumes the execution of this coroutine. Read more
Source§

impl<T> Debug for SyncView<T>
where T: ?Sized,

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<T> Default for SyncView<T>
where T: Default,

Source§

fn default() -> SyncView<T>

Returns the “default value” for a type. Read more
Source§

impl<T> Eq for SyncView<T>
where T: Sync + Eq + ?Sized,

Source§

impl<F, Args> Fn<Args> for SyncView<F>
where F: Sync + Fn<Args>, Args: Tuple,

Source§

extern "rust-call" fn call( &self, args: Args, ) -> <SyncView<F> as FnOnce<Args>>::Output

🔬This is a nightly-only experimental API. (fn_traits)
Performs the call operation.
Source§

impl<F, Args> FnMut<Args> for SyncView<F>
where F: FnMut<Args>, Args: Tuple,

Source§

extern "rust-call" fn call_mut( &mut self, args: Args, ) -> <SyncView<F> as FnOnce<Args>>::Output

🔬This is a nightly-only experimental API. (fn_traits)
Performs the call operation.
Source§

impl<F, Args> FnOnce<Args> for SyncView<F>
where F: FnOnce<Args>, Args: Tuple,

Source§

type Output = <F as FnOnce<Args>>::Output

The returned type after the call operator is used.
Source§

extern "rust-call" fn call_once( self, args: Args, ) -> <SyncView<F> as FnOnce<Args>>::Output

🔬This is a nightly-only experimental API. (fn_traits)
Performs the call operation.
Source§

impl<T> From<T> for SyncView<T>

Source§

fn from(t: T) -> SyncView<T>

Converts to this type from the input type.
Source§

impl<T> Future for SyncView<T>
where T: Future + ?Sized,

Source§

type Output = <T as Future>::Output

The type of value produced on completion.
Source§

fn poll( self: Pin<&mut SyncView<T>>, cx: &mut Context<'_>, ) -> Poll<<SyncView<T> as Future>::Output>

Attempts to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more
Source§

impl<T> Hash for SyncView<T>
where T: Sync + Hash + ?Sized,

Source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T> Ord for SyncView<T>
where T: Sync + Ord + ?Sized,

Source§

fn cmp(&self, other: &SyncView<T>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<T, U> PartialEq<SyncView<U>> for SyncView<T>
where T: Sync + PartialEq<U> + ?Sized, U: Sync + ?Sized,

Source§

fn eq(&self, other: &SyncView<U>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T, U> PartialOrd<SyncView<U>> for SyncView<T>
where T: Sync + PartialOrd<U> + ?Sized, U: Sync + ?Sized,

Source§

fn partial_cmp(&self, other: &SyncView<U>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T> StructuralPartialEq for SyncView<T>

Source§

impl<T> Sync for SyncView<T>
where T: ?Sized,

Auto Trait Implementations§

§

impl<T> Freeze for SyncView<T>
where T: Freeze + ?Sized,

§

impl<T> RefUnwindSafe for SyncView<T>
where T: RefUnwindSafe + ?Sized,

§

impl<T> Send for SyncView<T>
where T: Send + ?Sized,

§

impl<T> Unpin for SyncView<T>
where T: Unpin + ?Sized,

§

impl<T> UnsafeUnpin for SyncView<T>
where T: UnsafeUnpin + ?Sized,

§

impl<T> UnwindSafe for SyncView<T>
where T: UnwindSafe + ?Sized,

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<U> As for U

Source§

fn as_<T>(self) -> T
where T: CastFrom<U>, U: Sized,

Casts self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. Read more
Source§

impl<S> AsComponentExternName for S
where S: AsRef<str>,

Source§

fn as_component_extern_name(&self) -> ComponentExternName<'_>

Converts this receiver into a ComponentExternName.
Source§

impl<T> Base32Len for T
where T: AsRef<[u8]>,

Source§

fn base32_len(&self) -> usize

Calculate the base32 serialized length
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CheckBase32<Vec<u5>> for T
where T: AsRef<[u8]>,

Source§

type Err = Error

Error type if conversion fails
Source§

fn check_base32(self) -> Result<Vec<u5>, <T as CheckBase32<Vec<u5>>>::Err>

Check if all values are in range and return array-like struct of u5 values
Source§

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

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

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

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<C, F> ContainsToken<C> for F
where F: Fn(C) -> bool,

Source§

fn contains_token(&self, token: C) -> bool

Returns true if self contains the token
Source§

impl<C, F> ContainsToken<C> for F
where F: Fn(C) -> bool,

Source§

fn contains_token(&self, token: C) -> bool

Returns true if self contains the token
Source§

impl<T, U> ContextualTryInto<U> for T
where U: ContextualTryFrom<T>,

Source§

impl<T1> DecodeUntypedSlice for T1
where T1: From<UntypedVal>,

Source§

fn decode_untyped_slice(results: &[UntypedVal]) -> Result<T1, UntypedError>

Decodes the slice of UntypedVal as a value of type Self. Read more
Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<F> ErrorSink for F
where F: FnMut(ParseError),

Source§

fn report_error(&mut self, error: ParseError)

Source§

impl<F> EventReceiver for F
where F: FnMut(Event),

Source§

fn std_table_open(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn std_table_close(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn array_table_open(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn array_table_close(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn inline_table_open(&mut self, span: Span, _error: &mut dyn ErrorSink) -> bool

Returns if entering the inline table is allowed
Source§

fn inline_table_close(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn array_open(&mut self, span: Span, _error: &mut dyn ErrorSink) -> bool

Returns if entering the array is allowed
Source§

fn array_close(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn simple_key( &mut self, span: Span, encoding: Option<Encoding>, _error: &mut dyn ErrorSink, )

Source§

fn key_sep(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn key_val_sep(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn scalar( &mut self, span: Span, encoding: Option<Encoding>, _error: &mut dyn ErrorSink, )

Source§

fn value_sep(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn whitespace(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn comment(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn newline(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

fn error(&mut self, span: Span, _error: &mut dyn ErrorSink)

Source§

impl<T> From<!> for T

Source§

fn from(t: !) -> T

Converts to this type from the input type.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> IntoEither for T

Source§

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

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

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

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

impl<T, F, R> IntoFunc<T, (), R> for F
where F: Fn() -> R + Send + Sync + 'static, R: WasmRet,

Source§

type Params = ()

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, R> IntoFunc<T, (Caller<'_, T>, T1), R> for F
where F: Fn(Caller<'_, T>, T1) -> R + Send + Sync + 'static, T1: WasmTy, R: WasmRet,

Source§

type Params = (T1,)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, R> IntoFunc<T, (Caller<'_, T>, T1, T2), R> for F
where F: Fn(Caller<'_, T>, T1, T2) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3, T4)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, T5, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3, T4, T5)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5, T6), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5, T6) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3, T4, T5, T6)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3, T4, T5, T6, T7)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3, T4, T5, T6, T7, T8)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, T12: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, T12: WasmTy, T13: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, T12: WasmTy, T13: WasmTy, T14: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, T12: WasmTy, T13: WasmTy, T14: WasmTy, T15: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, R> IntoFunc<T, (Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16), R> for F
where F: Fn(Caller<'_, T>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, T12: WasmTy, T13: WasmTy, T14: WasmTy, T15: WasmTy, T16: WasmTy, R: WasmRet,

Source§

impl<T, F, R> IntoFunc<T, (Caller<'_, T>,), R> for F
where F: Fn(Caller<'_, T>) -> R + Send + Sync + 'static, R: WasmRet,

Source§

type Params = ()

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, R> IntoFunc<T, (T1, T2), R> for F
where F: Fn(T1, T2) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, R> IntoFunc<T, (T1, T2, T3), R> for F
where F: Fn(T1, T2, T3) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, R> IntoFunc<T, (T1, T2, T3, T4), R> for F
where F: Fn(T1, T2, T3, T4) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3, T4)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, T5, R> IntoFunc<T, (T1, T2, T3, T4, T5), R> for F
where F: Fn(T1, T2, T3, T4, T5) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3, T4, T5)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, R> IntoFunc<T, (T1, T2, T3, T4, T5, T6), R> for F
where F: Fn(T1, T2, T3, T4, T5, T6) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3, T4, T5, T6)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, R> IntoFunc<T, (T1, T2, T3, T4, T5, T6, T7), R> for F
where F: Fn(T1, T2, T3, T4, T5, T6, T7) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3, T4, T5, T6, T7)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, R> IntoFunc<T, (T1, T2, T3, T4, T5, T6, T7, T8), R> for F
where F: Fn(T1, T2, T3, T4, T5, T6, T7, T8) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, R: WasmRet,

Source§

type Params = (T1, T2, T3, T4, T5, T6, T7, T8)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, R> IntoFunc<T, (T1, T2, T3, T4, T5, T6, T7, T8, T9), R> for F
where F: Fn(T1, T2, T3, T4, T5, T6, T7, T8, T9) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R> IntoFunc<T, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10), R> for F
where F: Fn(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, R> IntoFunc<T, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11), R> for F
where F: Fn(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, R> IntoFunc<T, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12), R> for F
where F: Fn(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, T12: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, R> IntoFunc<T, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13), R> for F
where F: Fn(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, T12: WasmTy, T13: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, R> IntoFunc<T, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14), R> for F
where F: Fn(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, T12: WasmTy, T13: WasmTy, T14: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, R> IntoFunc<T, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15), R> for F
where F: Fn(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, T12: WasmTy, T13: WasmTy, T14: WasmTy, T15: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, R> IntoFunc<T, (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16), R> for F
where F: Fn(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16) -> R + Send + Sync + 'static, T1: WasmTy, T2: WasmTy, T3: WasmTy, T4: WasmTy, T5: WasmTy, T6: WasmTy, T7: WasmTy, T8: WasmTy, T9: WasmTy, T10: WasmTy, T11: WasmTy, T12: WasmTy, T13: WasmTy, T14: WasmTy, T15: WasmTy, T16: WasmTy, R: WasmRet,

Source§

impl<T, F, T1, R> IntoFunc<T, (T1,), R> for F
where F: Fn(T1) -> R + Send + Sync + 'static, T1: WasmTy, R: WasmRet,

Source§

type Params = (T1,)

Source§

type Results = <R as WasmRet>::Ok

Source§

fn into_func(self) -> (FuncType, TrampolineEntity<T>)

Source§

impl<F> IntoFuture for F
where F: Future,

Source§

type Output = <F as Future>::Output

The output that the future will produce on completion.
Source§

type IntoFuture = F

Which kind of future are we turning this into?
Source§

fn into_future(self) -> <F as IntoFuture>::IntoFuture

Creates a future from a value. Read more
Source§

impl<X, Y> LabelledResolve<Y> for X
where Y: LabelledResolveFrom<X>,

Source§

fn labelled_resolve( self, resolver: &impl LabelResolver<<Y as LabelledResolvable>::ResolverOutput>, ) -> Y

Source§

impl<I, O, E, P> ModalParser<I, O, E> for P
where P: Parser<I, O, ErrMode<E>>,

Source§

impl<F, T> Parser for F
where F: FnOnce(&ParseBuffer<'_>) -> Result<T, Error>,

Source§

type Output = T

Source§

fn parse2(self, tokens: TokenStream) -> Result<T, Error>

Parse a proc-macro2 token stream into the chosen syntax tree node. Read more
Source§

fn __parse_scoped( self, scope: Span, tokens: TokenStream, ) -> Result<<F as Parser>::Output, Error>

Source§

fn __parse_stream( self, input: &ParseBuffer<'_>, ) -> Result<<F as Parser>::Output, Error>

Source§

fn parse(self, tokens: TokenStream) -> Result<Self::Output, Error>

Parse tokens of source code into the chosen syntax tree node. Read more
Source§

fn parse_str(self, s: &str) -> Result<Self::Output, Error>

Parse a string of Rust code into the chosen syntax tree node. Read more
Source§

impl<I, O, E, F> Parser<I, O, E> for F
where F: FnMut(&mut I) -> Result<O, E>, I: Stream,

Source§

fn parse_next(&mut self, i: &mut I) -> Result<O, E>

Take tokens from the Stream, turning it into the output Read more
Source§

fn parse( &mut self, input: I, ) -> Result<O, ParseError<I, <E as ParserError<I>>::Inner>>
where Self: Sized, I: Stream + StreamIsPartial, E: ParserError<I>, <E as ParserError<I>>::Inner: ParserError<I>,

Parse all of input, generating O from it Read more
Source§

fn parse_peek(&mut self, input: I) -> Result<(I, O), E>

Take tokens from the Stream, turning it into the output Read more
Source§

fn by_ref(&mut self) -> ByRef<'_, Self, I, O, E>
where Self: Sized,

Treat &mut Self as a parser Read more
Source§

fn value<O2>(self, val: O2) -> Value<Self, I, O, O2, E>
where Self: Sized, O2: Clone,

Produce the provided value Read more
Source§

fn default_value<O2>(self) -> DefaultValue<Self, I, O, O2, E>
where Self: Sized, O2: Default,

Produce a type’s default value Read more
Source§

fn void(self) -> Void<Self, I, O, E>
where Self: Sized,

Discards the output of the Parser Read more
Source§

fn output_into<O2>(self) -> OutputInto<Self, I, O, O2, E>
where Self: Sized, O: Into<O2>,

Convert the parser’s output to another type using [std::convert::From] Read more
Source§

fn take(self) -> Take<Self, I, O, E>
where Self: Sized, I: Stream,

Produce the consumed input as produced value. Read more
Source§

fn with_taken(self) -> WithTaken<Self, I, O, E>
where Self: Sized, I: Stream,

Produce the consumed input with the output Read more
Source§

fn span(self) -> Span<Self, I, O, E>
where Self: Sized, I: Stream + Location,

Produce the location of the consumed input as produced value. Read more
Source§

fn with_span(self) -> WithSpan<Self, I, O, E>
where Self: Sized, I: Stream + Location,

Produce the location of consumed input with the output Read more
Source§

fn map<G, O2>(self, map: G) -> Map<Self, G, I, O, O2, E>
where G: FnMut(O) -> O2, Self: Sized,

Maps a function over the output of a parser Read more
Source§

fn try_map<G, O2, E2>(self, map: G) -> TryMap<Self, G, I, O, O2, E, E2>
where Self: Sized, G: FnMut(O) -> Result<O2, E2>, I: Stream, E: FromExternalError<I, E2> + ParserError<I>,

Applies a function returning a Result over the output of a parser. Read more
Source§

fn verify_map<G, O2>(self, map: G) -> VerifyMap<Self, G, I, O, O2, E>
where Self: Sized, G: FnMut(O) -> Option<O2>, I: Stream, E: ParserError<I>,

Source§

fn flat_map<G, H, O2>(self, map: G) -> FlatMap<Self, G, H, I, O, O2, E>
where Self: Sized, G: FnMut(O) -> H, H: Parser<I, O2, E>,

Creates a parser from the output of this one Read more
Source§

fn and_then<G, O2>(self, inner: G) -> AndThen<Self, G, I, O, O2, E>
where Self: Sized, G: Parser<O, O2, E>, O: StreamIsPartial, I: Stream,

Applies a second parser over the output of the first one Read more
Source§

fn parse_to<O2>(self) -> ParseTo<Self, I, O, O2, E>
where Self: Sized, I: Stream, O: ParseSlice<O2>, E: ParserError<I>,

Apply [std::str::FromStr] to the output of the parser Read more
Source§

fn verify<G, O2>(self, filter: G) -> Verify<Self, G, I, O, O2, E>
where Self: Sized, G: FnMut(&O2) -> bool, I: Stream, O: Borrow<O2>, E: ParserError<I>, O2: ?Sized,

Returns the output of the child parser if it satisfies a verification function. Read more
Source§

fn context<C>(self, context: C) -> Context<Self, I, O, E, C>
where Self: Sized, I: Stream, E: AddContext<I, C> + ParserError<I>, C: Clone + Debug,

If parsing fails, add context to the error Read more
Source§

fn context_with<F, C, FI>( self, context: F, ) -> ContextWith<Self, I, O, E, F, C, FI>
where Self: Sized, I: Stream, E: AddContext<I, C> + ParserError<I>, F: Fn() -> FI + Clone, C: Debug, FI: Iterator<Item = C>,

If parsing fails, dynamically add context to the error Read more
Source§

fn map_err<G, E2>(self, map: G) -> MapErr<Self, G, I, O, E, E2>
where G: FnMut(E) -> E2, Self: Sized,

Maps a function over the error of a parser Read more
Source§

fn complete_err(self) -> CompleteErr<Self, I, O, E>
where Self: Sized,

Source§

fn err_into<E2>(self) -> ErrInto<Self, I, O, E, E2>
where Self: Sized, E: Into<E2>,

Convert the parser’s error to another type using [std::convert::From]
Source§

impl<F> Pattern for F
where F: FnMut(char) -> bool,

Source§

type Searcher<'a> = CharPredicateSearcher<'a, F>

🔬This is a nightly-only experimental API. (pattern)
Associated searcher for this pattern
Source§

fn into_searcher<'a>(self, haystack: &'a str) -> CharPredicateSearcher<'a, F>

🔬This is a nightly-only experimental API. (pattern)
Constructs the associated searcher from self and the haystack to search in.
Source§

fn is_contained_in<'a>(self, haystack: &'a str) -> bool

🔬This is a nightly-only experimental API. (pattern)
Checks whether the pattern matches anywhere in the haystack
Source§

fn is_prefix_of<'a>(self, haystack: &'a str) -> bool

🔬This is a nightly-only experimental API. (pattern)
Checks whether the pattern matches at the front of the haystack
Source§

fn strip_prefix_of<'a>(self, haystack: &'a str) -> Option<&'a str>

🔬This is a nightly-only experimental API. (pattern)
Removes the pattern from the front of haystack, if it matches.
Source§

fn is_suffix_of<'a>(self, haystack: &'a str) -> bool

🔬This is a nightly-only experimental API. (pattern)
Checks whether the pattern matches at the back of the haystack
Source§

fn strip_suffix_of<'a>(self, haystack: &'a str) -> Option<&'a str>

🔬This is a nightly-only experimental API. (pattern)
Removes the pattern from the back of haystack, if it matches.
Source§

fn as_utf8_pattern(&self) -> Option<Utf8Pattern<'_>>

🔬This is a nightly-only experimental API. (pattern)
Returns the pattern as UTF-8 if possible.
Source§

impl<F, T> Peek for F
where F: Copy + FnOnce(TokenMarker) -> T, T: Token,

Source§

type Token = T

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<F, T> Replacer for F
where F: FnMut(&Captures<'_>) -> T, T: AsRef<[u8]>,

Source§

fn replace_append(&mut self, caps: &Captures<'_>, dst: &mut Vec<u8>)

Appends possibly empty data to dst to replace the current match. Read more
Source§

fn no_expansion<'r>(&'r mut self) -> Option<Cow<'r, [u8]>>

Return a fixed unchanging replacement byte string. Read more
Source§

fn by_ref<'r>(&'r mut self) -> ReplacerRef<'r, Self>

Returns a type that implements Replacer, but that borrows and wraps this Replacer. Read more
Source§

impl<F, T> Replacer for F
where F: FnMut(&Captures<'_>) -> T, T: AsRef<str>,

Source§

fn replace_append(&mut self, caps: &Captures<'_>, dst: &mut String)

Appends possibly empty data to dst to replace the current match. Read more
Source§

fn no_expansion<'r>(&'r mut self) -> Option<Cow<'r, str>>

Return a fixed unchanging replacement string. Read more
Source§

fn by_ref<'r>(&'r mut self) -> ReplacerRef<'r, Self>

Returns a type that implements Replacer, but that borrows and wraps this Replacer. Read more
Source§

impl<X, Y> Resolve<Y> for X
where Y: ResolveFrom<X>,

Source§

fn resolve(self) -> Y

Source§

impl<T> ResolveAsRawNotarizedTransaction for T

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToBase32 for T
where T: AsRef<[u8]>,

Source§

fn write_base32<W>(&self, writer: &mut W) -> Result<(), <W as WriteBase32>::Err>
where W: WriteBase32,

Encode as base32 and write it to the supplied writer Implementations shouldn’t allocate.
Source§

fn to_base32(&self) -> Vec<u5>

Convert Self to base32 vector
Source§

impl<T> ToHex for T
where T: AsRef<[u8]>,

Source§

fn encode_hex<U>(&self) -> U
where U: FromIterator<char>,

Encode the hex strict representing self into the result. Lower case letters are used (e.g. f9b4ca)
Source§

fn encode_hex_upper<U>(&self) -> U
where U: FromIterator<char>,

Encode the hex strict representing self into the result. Upper case letters are used (e.g. F9B4CA)
Source§

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

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

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

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

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

Source§

type Error = Infallible

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

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

Performs the conversion.
Source§

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

Source§

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

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

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

Performs the conversion.