Skip to main content

SyncView

Struct SyncView 

Source
pub struct SyncView<T: ?Sized> { /* private fields */ }
๐Ÿ”ฌThis is a nightly-only experimental API. (exclusive_wrapper #98407)
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: Sized> SyncView<T>

Source

pub const fn new(t: T) -> Self

๐Ÿ”ฌThis is a nightly-only experimental API. (exclusive_wrapper #98407)

Wrap a value in an SyncView

Source

pub const fn into_inner(self) -> T

๐Ÿ”ฌThis is a nightly-only experimental API. (exclusive_wrapper #98407)

Unwrap the value contained in the SyncView

Sourceยง

impl<T: ?Sized> SyncView<T>

Source

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

๐Ÿ”ฌThis is a nightly-only experimental API. (exclusive_wrapper #98407)

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 #98407)

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 #98407)

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: ?Sized + Sync> SyncView<T>

Source

pub const fn as_pin(self: Pin<&Self>) -> Pin<&T>

๐Ÿ”ฌThis is a nightly-only experimental API. (exclusive_wrapper #98407)

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, ) -> Self::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, ) -> Self::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, ) -> Self::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) -> Self

Returns a duplicate of the value. Read more
1.0.0 ยท Sourceยง

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

Performs copy-assignment from source. Read more
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 #43122)
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 #43122)
The type of value this coroutine returns. Read more
Sourceยง

fn resume( self: Pin<&mut Self>, arg: R, ) -> CoroutineState<Self::Yield, Self::Return>

๐Ÿ”ฌThis is a nightly-only experimental API. (coroutine_trait #43122)
Resumes the execution of this coroutine. Read more
Sourceยง

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

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() -> Self

Returns the โ€œdefault valueโ€ for a type. Read more
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) -> Self::Output

๐Ÿ”ฌThis is a nightly-only experimental API. (fn_traits #29625)
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) -> Self::Output

๐Ÿ”ฌThis is a nightly-only experimental API. (fn_traits #29625)
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) -> Self::Output

๐Ÿ”ฌThis is a nightly-only experimental API. (fn_traits #29625)
Performs the call operation.
Sourceยง

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

Sourceยง

fn from(t: T) -> Self

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 Self>, cx: &mut Context<'_>) -> Poll<Self::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: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 ยท Sourceยง

fn hash_slice<H: Hasher>(data: &[Self], state: &mut H)
where 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: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 ยท Sourceยง

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

Compares and returns the maximum of two values. Read more
1.21.0 ยท Sourceยง

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

Compares and returns the minimum of two values. Read more
1.50.0 ยท 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 ยท 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 ยท 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 ยท 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 ยท 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 ยท 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> Copy for SyncView<T>
where T: Sync + Copy,

Sourceยง

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

Sourceยง

impl<T> StructuralPartialEq for SyncView<T>

Sourceยง

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

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<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> 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 #126799)
Performs copy-assignment from self to dest. Read more
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<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<F> Pattern for F
where F: FnMut(char) -> bool,

Sourceยง

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

๐Ÿ”ฌThis is a nightly-only experimental API. (pattern #27721)
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 #27721)
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 #27721)
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 #27721)
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 #27721)
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 #27721)
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 #27721)
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 #27721)
Returns the pattern as utf-8 bytes if possible.
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.