pub struct TokConfig {
pub async_hacks: bool,
pub split_ftstring: bool,
}
Fields§
§async_hacks: bool
Used in Python 3.5 and 3.6. If enabled, async/await are sometimes keywords and sometimes identifiers, depending on if they’re being used in the context of an async function. This breaks async comprehensions outside of async functions.
split_ftstring: bool
Auto Trait Implementations§
impl Freeze for TokConfig
impl RefUnwindSafe for TokConfig
impl Send for TokConfig
impl Sync for TokConfig
impl Unpin for TokConfig
impl UnwindSafe for TokConfig
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