Enum prop_check_rs::gen::SGen
source · pub enum SGen<A> {
Sized(Rc<RefCell<dyn Fn(u32) -> Gen<A>>>),
Unsized(Gen<A>),
}Expand description
Generator with size information.
サイズ情報を持つジェネレータ。
Variants§
Sized(Rc<RefCell<dyn Fn(u32) -> Gen<A>>>)
Generator with size information.
サイズ情報を持つジェネレータ。
Unsized(Gen<A>)
Generator without size information.
サイズ情報を持たないジェネレータ。
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<A> Freeze for SGen<A>
impl<A> !RefUnwindSafe for SGen<A>
impl<A> !Send for SGen<A>
impl<A> !Sync for SGen<A>
impl<A> Unpin for SGen<A>
impl<A> !UnwindSafe for SGen<A>
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