pub struct RubyFiber {
pub name: String,
pub params: Vec<String>,
pub body: String,
pub is_async: bool,
}Expand description
Ruby fiber definition
Fields§
§name: String§params: Vec<String>§body: String§is_async: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for RubyFiber
impl RefUnwindSafe for RubyFiber
impl Send for RubyFiber
impl Sync for RubyFiber
impl Unpin for RubyFiber
impl UnsafeUnpin for RubyFiber
impl UnwindSafe for RubyFiber
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