Struct prolog_parser_rebis::ast::SharedOpDesc[][src]

pub struct SharedOpDesc(_);

Implementations

impl SharedOpDesc[src]

pub fn new(priority: usize, spec: Specifier) -> Self[src]

pub fn ptr_eq(lop_desc: &SharedOpDesc, rop_desc: &SharedOpDesc) -> bool[src]

pub fn arity(&self) -> usize[src]

pub fn get(&self) -> (usize, Specifier)[src]

pub fn set(&self, prec: usize, spec: Specifier)[src]

pub fn prec(&self) -> usize[src]

pub fn assoc(&self) -> Specifier[src]

Methods from Deref<Target = Cell<(usize, Specifier)>>

pub fn set(&self, val: T)1.0.0[src]

Sets the contained value.

Examples

use std::cell::Cell;

let c = Cell::new(5);

c.set(10);

pub fn swap(&self, other: &Cell<T>)1.17.0[src]

Swaps the values of two Cells. Difference with std::mem::swap is that this function doesn't require &mut reference.

Examples

use std::cell::Cell;

let c1 = Cell::new(5i32);
let c2 = Cell::new(10i32);
c1.swap(&c2);
assert_eq!(10, c1.get());
assert_eq!(5, c2.get());

pub fn replace(&self, val: T) -> T1.17.0[src]

Replaces the contained value, and returns it.

Examples

use std::cell::Cell;

let cell = Cell::new(5);
assert_eq!(cell.get(), 5);
assert_eq!(cell.replace(10), 5);
assert_eq!(cell.get(), 10);

pub fn get(&self) -> T1.0.0[src]

Returns a copy of the contained value.

Examples

use std::cell::Cell;

let c = Cell::new(5);

let five = c.get();

pub fn update<F>(&self, f: F) -> T where
    F: FnOnce(T) -> T, 
[src]

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

Updates the contained value using a function and returns the new value.

Examples

#![feature(cell_update)]

use std::cell::Cell;

let c = Cell::new(5);
let new = c.update(|x| x + 1);

assert_eq!(new, 6);
assert_eq!(c.get(), 6);

pub const fn as_ptr(&self) -> *mut T1.12.0 (const: 1.32.0)[src]

Returns a raw pointer to the underlying data in this cell.

Examples

use std::cell::Cell;

let c = Cell::new(5);

let ptr = c.as_ptr();

pub fn take(&self) -> T1.17.0[src]

Takes the value of the cell, leaving Default::default() in its place.

Examples

use std::cell::Cell;

let c = Cell::new(5);
let five = c.take();

assert_eq!(five, 5);
assert_eq!(c.into_inner(), 0);

pub fn as_slice_of_cells(&self) -> &[Cell<T>]1.37.0[src]

Returns a &[Cell<T>] from a &Cell<[T]>

Examples

use std::cell::Cell;

let slice: &mut [i32] = &mut [1, 2, 3];
let cell_slice: &Cell<[i32]> = Cell::from_mut(slice);
let slice_cell: &[Cell<i32>] = cell_slice.as_slice_of_cells();

assert_eq!(slice_cell.len(), 3);

Trait Implementations

impl Clone for SharedOpDesc[src]

impl Debug for SharedOpDesc[src]

impl Deref for SharedOpDesc[src]

type Target = Cell<(usize, Specifier)>

The resulting type after dereferencing.

impl Eq for SharedOpDesc[src]

impl Hash for SharedOpDesc[src]

impl Ord for SharedOpDesc[src]

impl PartialEq<SharedOpDesc> for SharedOpDesc[src]

impl PartialOrd<SharedOpDesc> for SharedOpDesc[src]

impl StructuralEq for SharedOpDesc[src]

impl StructuralPartialEq for SharedOpDesc[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Az for T[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CheckedAs for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> OverflowingAs for T[src]

impl<T> SaturatingAs for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> WrappingAs for T[src]