Struct lens_rs_generator::_ref [−][src]
to visit the data in pointers, implemented LensRef
assert_eq!(Box::new(0).view_ref(optic!(_ref)), &0); assert_eq!(Rc::new(0).view_ref(optic!(_ref)), &0); let x = Foo { a: &(1, 2), b: () }; assert_eq!(x.view_ref(optics!(a._ref._1)), &2)
Trait Implementations
impl<Optic: Clone> Clone for _ref<Optic>
[src]
impl<Optic: Copy> Copy for _ref<Optic>
[src]
impl<Optic: Debug> Debug for _ref<Optic>
[src]
impl<Optic: Eq> Eq for _ref<Optic>
[src]
impl<Optic: PartialEq> PartialEq<_ref<Optic>> for _ref<Optic>
[src]
impl<Optic> StructuralEq for _ref<Optic>
[src]
impl<Optic> StructuralPartialEq for _ref<Optic>
[src]
Auto Trait Implementations
impl<Optic> RefUnwindSafe for _ref<Optic> where
Optic: RefUnwindSafe,
Optic: RefUnwindSafe,
impl<Optic> Send for _ref<Optic> where
Optic: Send,
Optic: Send,
impl<Optic> Sync for _ref<Optic> where
Optic: Sync,
Optic: Sync,
impl<Optic> Unpin for _ref<Optic> where
Optic: Unpin,
Optic: Unpin,
impl<Optic> UnwindSafe for _ref<Optic> where
Optic: UnwindSafe,
Optic: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,