Enum magnus::block::Yield

source ·
pub enum Yield<I> {
    Iter(I),
    Enumerator(Enumerator),
}
Expand description

Helper type for functions that either yield a single value to a block or return an Enumerator.

I must implement Iterator<Item = T>, where T implements IntoValue.

§Examples

use magnus::{
    block::{block_given, Yield},
    define_global_function, eval, method,
    prelude::*,
    rb_assert, RArray, Value,
};

fn count_to_3(rb_self: Value) -> Yield<impl Iterator<Item = u8>> {
    if block_given() {
        Yield::Iter(1..=3)
    } else {
        Yield::Enumerator(rb_self.enumeratorize("count_to_3", ()))
    }
}

define_global_function("count_to_3", method!(count_to_3, 0));

// call Ruby method with a block.
let a = RArray::new();
rb_assert!("count_to_3 {|i| a << i} == nil", a);
rb_assert!("a == [1, 2, 3]", a);

// call Ruby method without a block.
let enumerator: Value = eval("count_to_3").unwrap();

rb_assert!("enumerator.next == 1", enumerator);
rb_assert!("enumerator.next == 2", enumerator);

Variants§

§

Iter(I)

Yields I::Item to given block.

§

Enumerator(Enumerator)

Returns Enumerator from the method.

Auto Trait Implementations§

§

impl<I> Freeze for Yield<I>
where I: Freeze,

§

impl<I> RefUnwindSafe for Yield<I>
where I: RefUnwindSafe,

§

impl<I> Send for Yield<I>
where I: Send,

§

impl<I> Sync for Yield<I>
where I: Sync,

§

impl<I> Unpin for Yield<I>
where I: Unpin,

§

impl<I> UnwindSafe for Yield<I>
where I: UnwindSafe,

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> 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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.
source§

impl<T> ReturnValue for T
where T: ReturnValue,