Enum v11::Action[][src]

pub enum Action<IT> {
    Continue {
        remove: bool,
        add: IT,
    },
    Break,
}

Return value for function parameters passed into $table.visit.

Variants

If remove is true, then this row is removed. Any items yielded by add are inserted prior to the next item. They will not be visited.

Fields of Continue

Stop visiting rows. They will not be removed.

Trait Implementations

impl<IT: Debug> Debug for Action<IT>
[src]

Formats the value using the given formatter. Read more

impl<IT: Clone> Clone for Action<IT>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<IT> Send for Action<IT> where
    IT: Send

impl<IT> Sync for Action<IT> where
    IT: Sync