pub enum ReturnKind {
Plain,
Option,
Iterator,
}
Expand description
How many values a function can return.
Variants§
Plain
Exactly one return value.
Option
Zero or one return values.
Iterator
Zero or more return values.
Trait Implementations§
Source§impl Clone for ReturnKind
impl Clone for ReturnKind
Source§fn clone(&self) -> ReturnKind
fn clone(&self) -> ReturnKind
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ReturnKind
impl Debug for ReturnKind
Source§impl PartialEq for ReturnKind
impl PartialEq for ReturnKind
impl Copy for ReturnKind
impl Eq for ReturnKind
impl StructuralPartialEq for ReturnKind
Auto Trait Implementations§
impl Freeze for ReturnKind
impl RefUnwindSafe for ReturnKind
impl Send for ReturnKind
impl Sync for ReturnKind
impl Unpin for ReturnKind
impl UnwindSafe for ReturnKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more