Enum cranelift_isle::sema::ReturnKind
source · 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<ReturnKind> for ReturnKind
impl PartialEq<ReturnKind> for ReturnKind
source§fn eq(&self, other: &ReturnKind) -> bool
fn eq(&self, other: &ReturnKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ReturnKind
impl Eq for ReturnKind
impl StructuralEq for ReturnKind
impl StructuralPartialEq for ReturnKind
Auto Trait Implementations§
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