Struct reffers::aref::ARef

source ·
#[repr(C)]
pub struct ARef<'a, U: ?Sized> { /* private fields */ }
Expand description

ARef - a reference that abstracts the owner completely.

ARef takes over where OwningRef ends, by abstracting the owner even further.

This makes it possible to return, say, an ARef<str> and have the caller drop the owner when done looking at it, without having to bother about whether the owner is a String, Rc<String>, a Ref<String>, or something else.

If you want an ARef that’s restricted to Send types, use ARefs, and if you want an ARef that’s restricted to Send + Sync types, use ARefss.

Oh, and it’s repr(C), so it can be transferred over an FFI boundary (if its target is repr(C), too).

Example

use std::rc::Rc;
use reffers::ARef;
 
struct CountDown(pub Rc<String>);
impl CountDown {
    pub fn idx_to_str(&self, idx: u32) -> ARef<str> {
        match idx {
            0 => "Go!".into(),
            // We clone the Rc instead of the String
            // for performance,
            // then we map from &String to &str
            1 => ARef::new(self.0.clone()).map(|s| &**s),
            _ => format!("{}...", idx).into(),
        }
    }
}
 
let c = CountDown(Rc::new("Ready!".into()));
assert_eq!(&*c.idx_to_str(3), "3...");
assert_eq!(&*c.idx_to_str(2), "2...");
assert_eq!(&*c.idx_to_str(1), "Ready!");
assert_eq!(&*c.idx_to_str(0), "Go!");

Implementations§

Descends from a ARef<RefCell> to a ARef (or RwLock, or Mutex etc)

Example
use std::sync::{Arc, RwLock};
use reffers::ARef;

let x = Arc::new(RwLock::new("Hello!"));
{
    let aref = ARef::new(x.clone());
    let hello = ARef::descend_from(aref);
    // The RwLock is now read locked
    assert_eq!(*hello, "Hello!");
    assert!(x.try_write().is_err());
}
// The lock is released when the ARef goes out of scope
assert!(x.try_write().is_ok());

Descends from a ARef<RefCell> to a ARef (or RwLock, or Mutex etc)

Fails if the RefCell/RwLock/Mutex is busy (or poisoned).

Creates a new ARef from what the ARef points to.

Example
use std::rc::Rc;
use reffers::ARef;

let aref = ARef::new(Rc::new(43));
assert_eq!(*aref, 43);

Maps the ARef’s target to something reachable from the target.

Example
use reffers::ARef;

let aref: ARef<[u8]> = vec![0u8, 5, 7].into();
assert_eq!(*aref.map(|s| &s[1]), 5);

Like map, but with Result passthrough.

Example
use reffers::ARef;

let aref = ARef::<[u8]>::from(vec![0u8, 5, 7]);
assert_eq!(aref.try_map(|s| s.get(9).ok_or(())), Err(()));

Trait Implementations§

Converts this type into a shared reference of the (usually inferred) input type.
Immutably borrows from an owned value. Read more
Formats the value using the given formatter. Read more
The resulting type after dereferencing.
Dereferences the value.
Executes the destructor for this type. Read more
Converts to this type from the input type.
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method returns an Ordering between self and other. Read more
Compares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
Restrict a value to a certain interval. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.