[][src]Struct rattle_items_match::Repeat

pub struct Repeat<T> { /* fields omitted */ }

Implementations

impl<T> Repeat<T> where
    T: Clone
[src]

Create Repeat.
Repeat を作成します。

pub fn build(&self) -> RepeatVal<T> where
    T: Clone
[src]

pub fn op<'a>(&'a mut self, op: &Operator<T>) -> &'a mut Self[src]

Set a operator.
演算子をセットしてください。

pub fn min<'a>(&'a mut self, val: usize) -> &'a mut Self[src]

Set a min.
最低何回繰り返すか。

pub fn max_not_included<'a>(&'a mut self, val: usize) -> &'a mut Self[src]

Set max not included.
最大何回繰り返すか。最大値は含まない。

Trait Implementations

impl<T> Default for Repeat<T> where
    T: Clone
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Repeat<T> where
    T: RefUnwindSafe

impl<T> Send for Repeat<T> where
    T: Send

impl<T> Sync for Repeat<T> where
    T: Sync

impl<T> Unpin for Repeat<T>

impl<T> UnwindSafe for Repeat<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

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

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

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.