pub struct LuaFlowChain { /* private fields */ }Implementations§
Source§impl LuaFlowChain
impl LuaFlowChain
pub fn new(decl_id: LuaDeclId) -> Self
pub fn get_decl_id(&self) -> LuaDeclId
pub fn add_type_assert(&mut self, type_assert: TypeAssertion, range: TextRange)
pub fn get_type_asserts( &self, position: TextSize, ) -> impl Iterator<Item = &TypeAssertion>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LuaFlowChain
impl RefUnwindSafe for LuaFlowChain
impl Send for LuaFlowChain
impl Sync for LuaFlowChain
impl Unpin for LuaFlowChain
impl UnwindSafe for LuaFlowChain
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more