UnwindSafe

Trait UnwindSafe 

1.41.0 · Source
pub auto trait UnwindSafe { }
Expand description

A marker trait which represents “panic safe” types in Rust.

This trait is implemented by default for many types and behaves similarly in terms of inference of implementation to the Send and Sync traits. The purpose of this trait is to encode what types are safe to cross a catch_unwind boundary with no fear of unwind safety.

§What is unwind safety?

In Rust a function can “return” early if it either panics or calls a function which transitively panics. This sort of control flow is not always anticipated, and has the possibility of causing subtle bugs through a combination of two critical components:

  1. A data structure is in a temporarily invalid state when the thread panics.
  2. This broken invariant is then later observed.

Typically in Rust, it is difficult to perform step (2) because catching a panic involves either spawning a thread (which in turn makes it difficult to later witness broken invariants) or using the catch_unwind function in this module. Additionally, even if an invariant is witnessed, it typically isn’t a problem in Rust because there are no uninitialized values (like in C or C++).

It is possible, however, for logical invariants to be broken in Rust, which can end up causing behavioral bugs. Another key aspect of unwind safety in Rust is that, in the absence of unsafe code, a panic cannot lead to memory unsafety.

That was a bit of a whirlwind tour of unwind safety, but for more information about unwind safety and how it applies to Rust, see an associated RFC.

§What is UnwindSafe?

Now that we’ve got an idea of what unwind safety is in Rust, it’s also important to understand what this trait represents. As mentioned above, one way to witness broken invariants is through the catch_unwind function in this module as it allows catching a panic and then re-using the environment of the closure.

Simply put, a type T implements UnwindSafe if it cannot easily allow witnessing a broken invariant through the use of catch_unwind (catching a panic). This trait is an auto trait, so it is automatically implemented for many types, and it is also structurally composed (e.g., a struct is unwind safe if all of its components are unwind safe).

Note, however, that this is not an unsafe trait, so there is not a succinct contract that this trait is providing. Instead it is intended as more of a “speed bump” to alert users of catch_unwind that broken invariants may be witnessed and may need to be accounted for.

§Who implements UnwindSafe?

Types such as &mut T and &RefCell<T> are examples which are not unwind safe. The general idea is that any mutable state which can be shared across catch_unwind is not unwind safe by default. This is because it is very easy to witness a broken invariant outside of catch_unwind as the data is simply accessed as usual.

Types like &Mutex<T>, however, are unwind safe because they implement poisoning by default. They still allow witnessing a broken invariant, but they already provide their own “speed bumps” to do so.

§When should UnwindSafe be used?

It is not intended that most types or functions need to worry about this trait. It is only used as a bound on the catch_unwind function and as mentioned above, the lack of unsafe means it is mostly an advisory. The AssertUnwindSafe wrapper struct can be used to force this trait to be implemented for any closed over variables passed to catch_unwind.

Implementors§

1.9.0 · Source§

impl UnwindSafe for Stderr

1.9.0 · Source§

impl UnwindSafe for StderrLock<'_>

1.9.0 · Source§

impl UnwindSafe for Stdout

1.9.0 · Source§

impl UnwindSafe for StdoutLock<'_>

1.59.0 · Source§

impl UnwindSafe for std::sync::once::Once

1.9.0 · Source§

impl UnwindSafe for Condvar

Source§

impl UnwindSafe for anyhow::Error

Available on crate feature std or non-anyhow_no_core_unwind_safe only.
1.64.0 · Source§

impl<K, V, A> UnwindSafe for BTreeMap<K, V, A>

1.36.0 · Source§

impl<K, V, S> UnwindSafe for HashMap<K, V, S>
where K: UnwindSafe, V: UnwindSafe, S: UnwindSafe,

Source§

impl<K, V, S> UnwindSafe for AHashMap<K, V, S>
where K: UnwindSafe, V: UnwindSafe,

1.9.0 · Source§

impl<T> !UnwindSafe for &mut T
where T: ?Sized,

1.9.0 · Source§

impl<T> UnwindSafe for *const T
where T: RefUnwindSafe + ?Sized,

1.9.0 · Source§

impl<T> UnwindSafe for *mut T
where T: RefUnwindSafe + ?Sized,

1.9.0 · Source§

impl<T> UnwindSafe for &T
where T: RefUnwindSafe + ?Sized,

1.28.0 · Source§

impl<T> UnwindSafe for NonZero<T>

1.25.0 · Source§

impl<T> UnwindSafe for NonNull<T>
where T: RefUnwindSafe + ?Sized,

Source§

impl<T> UnwindSafe for Receiver<T>

Source§

impl<T> UnwindSafe for Sender<T>

1.70.0 · Source§

impl<T> UnwindSafe for OnceLock<T>
where T: UnwindSafe,

1.9.0 · Source§

impl<T> UnwindSafe for Mutex<T>
where T: ?Sized,

1.9.0 · Source§

impl<T> UnwindSafe for RwLock<T>
where T: ?Sized,

Source§

impl<T> UnwindSafe for ReentrantLock<T>
where T: UnwindSafe + ?Sized,

Source§

impl<T> UnwindSafe for AtomicCell<T>

Source§

impl<T> UnwindSafe for ShardedLock<T>
where T: ?Sized,

Source§

impl<T> UnwindSafe for once_cell::unsync::OnceCell<T>
where T: UnwindSafe,

1.9.0 · Source§

impl<T> UnwindSafe for AssertUnwindSafe<T>

1.9.0 · Source§

impl<T, A> UnwindSafe for Rc<T, A>

1.9.0 · Source§

impl<T, A> UnwindSafe for Arc<T, A>

1.9.0 · Source§

impl<T, A> UnwindSafe for alloc::vec::into_iter::IntoIter<T, A>

1.80.0 · Source§

impl<T, F> UnwindSafe for LazyLock<T, F>
where T: UnwindSafe, F: UnwindSafe,

Auto implementors§

§

impl !UnwindSafe for EventLoop

§

impl !UnwindSafe for Imgui

§

impl !UnwindSafe for SuspendedContext

§

impl UnwindSafe for Action

§

impl UnwindSafe for ClientApiHint

§

impl UnwindSafe for ColorEditDisplayMode

§

impl UnwindSafe for ColorEditInputMode

§

impl UnwindSafe for ColorFormat

§

impl UnwindSafe for ColorPickerMode

§

impl UnwindSafe for ColorPreview

§

impl UnwindSafe for ComboBoxHeight

§

impl UnwindSafe for ComboBoxPreviewMode

§

impl UnwindSafe for Condition

§

impl UnwindSafe for ContextCreationApi

§

impl UnwindSafe for ContextReleaseBehavior

§

impl UnwindSafe for ContextRobustnessHint

§

impl UnwindSafe for CursorMode

§

impl UnwindSafe for Direction

§

impl UnwindSafe for DrawCmd

§

impl UnwindSafe for chaos_framework::Error

§

impl UnwindSafe for EulerRot

§

impl UnwindSafe for FocusedWidget

§

impl UnwindSafe for GamepadAxis

§

impl UnwindSafe for GamepadButton

§

impl UnwindSafe for HistoryDirection

§

impl UnwindSafe for InitError

§

impl UnwindSafe for InitHint

§

impl UnwindSafe for ItemFlag

§

impl UnwindSafe for JoystickEvent

§

impl UnwindSafe for JoystickId

§

impl UnwindSafe for MonitorEvent

§

impl UnwindSafe for MouseCursor

§

impl UnwindSafe for NavInput

§

impl UnwindSafe for OpenGlProfileHint

§

impl UnwindSafe for ProjectionType

§

impl UnwindSafe for StandardCursor

§

impl UnwindSafe for StyleColor

§

impl UnwindSafe for StyleVar

§

impl UnwindSafe for SwapInterval

§

impl UnwindSafe for WindowEvent

§

impl UnwindSafe for WindowHint

§

impl UnwindSafe for GLFWcursor

§

impl UnwindSafe for GLFWmonitor

§

impl UnwindSafe for GLFWwindow

§

impl UnwindSafe for DataType

§

impl UnwindSafe for c_void

§

impl UnwindSafe for __GLsync

§

impl UnwindSafe for _cl_context

§

impl UnwindSafe for _cl_event

§

impl UnwindSafe for AsciiChar

§

impl UnwindSafe for chaos_framework::__core::cmp::Ordering

§

impl UnwindSafe for Infallible

§

impl UnwindSafe for FromBytesWithNulError

§

impl UnwindSafe for chaos_framework::__core::fmt::Alignment

§

impl UnwindSafe for DebugAsHex

§

impl UnwindSafe for chaos_framework::__core::fmt::Sign

§

impl UnwindSafe for AtomicOrdering

§

impl UnwindSafe for BasicBlock

§

impl UnwindSafe for UnwindTerminateReason

§

impl UnwindSafe for SimdAlign

§

impl UnwindSafe for IpAddr

§

impl UnwindSafe for Ipv6MulticastScope

§

impl UnwindSafe for SocketAddr

§

impl UnwindSafe for FpCategory

§

impl UnwindSafe for IntErrorKind

§

impl UnwindSafe for OneSidedRangeBound

§

impl UnwindSafe for GetDisjointMutError

§

impl UnwindSafe for SearchStep

§

impl UnwindSafe for chaos_framework::__core::sync::atomic::Ordering

§

impl UnwindSafe for ImColor32Fields

§

impl UnwindSafe for DragDropPayload

§

impl UnwindSafe for DragDropPayloadEmpty

§

impl UnwindSafe for PayloadIsWrongType

§

impl UnwindSafe for DrawFlags

§

impl UnwindSafe for DrawListFlags

§

impl UnwindSafe for GLFWgamepadstate

§

impl UnwindSafe for GLFWgammaramp

§

impl UnwindSafe for GLFWimage

§

impl UnwindSafe for GLFWvidmode

§

impl UnwindSafe for Affine2

§

impl UnwindSafe for Affine3A

§

impl UnwindSafe for AnimationBone

§

impl UnwindSafe for BVec2

§

impl UnwindSafe for BVec3

§

impl UnwindSafe for BVec3A

§

impl UnwindSafe for BVec4

§

impl UnwindSafe for BVec4A

§

impl UnwindSafe for BackendFlags

§

impl UnwindSafe for ButtonFlags

§

impl UnwindSafe for Camera

§

impl UnwindSafe for chaos_framework::Circle

§

impl UnwindSafe for ColorEditFlags

§

impl UnwindSafe for ComboBoxFlags

§

impl UnwindSafe for ConfigFlags

§

impl UnwindSafe for Cuboid

§

impl UnwindSafe for Cursor

§

impl UnwindSafe for DAffine2

§

impl UnwindSafe for DAffine3

§

impl UnwindSafe for DMat2

§

impl UnwindSafe for DMat3

§

impl UnwindSafe for DMat4

§

impl UnwindSafe for DQuat

§

impl UnwindSafe for DVec2

§

impl UnwindSafe for DVec3

§

impl UnwindSafe for DVec4

§

impl UnwindSafe for DragDropFlags

§

impl UnwindSafe for DrawCmdParams

§

impl UnwindSafe for DrawData

§

impl UnwindSafe for DrawList

§

impl UnwindSafe for DrawVert

§

impl UnwindSafe for DummyClipboardContext

§

impl UnwindSafe for EventHandler

§

impl UnwindSafe for FnPtr

§

impl UnwindSafe for Font

§

impl UnwindSafe for FontAtlas

§

impl UnwindSafe for FontAtlasFlags

§

impl UnwindSafe for FontConfig

§

impl UnwindSafe for FontGlyph

§

impl UnwindSafe for FontGlyphRanges

§

impl UnwindSafe for FontId

§

impl UnwindSafe for GamepadState

§

impl UnwindSafe for GammaRamp

§

impl UnwindSafe for Glfw

§

impl UnwindSafe for I16Vec2

§

impl UnwindSafe for I16Vec3

§

impl UnwindSafe for I16Vec4

§

impl UnwindSafe for I64Vec2

§

impl UnwindSafe for I64Vec3

§

impl UnwindSafe for I64Vec4

§

impl UnwindSafe for IVec2

§

impl UnwindSafe for IVec3

§

impl UnwindSafe for IVec4

§

impl UnwindSafe for Id

§

impl UnwindSafe for ImColor32

§

impl UnwindSafe for ImStr

§

impl UnwindSafe for ImString

§

impl UnwindSafe for chaos_framework::Image

§

impl UnwindSafe for ImageButtonDeprecated

§

impl UnwindSafe for ImguiRenderer

§

impl UnwindSafe for InputTextCallback

§

impl UnwindSafe for InputTextFlags

§

impl UnwindSafe for InputTextMultilineCallback

§

impl UnwindSafe for InvalidStyleColorValue

§

impl UnwindSafe for Io

§

impl UnwindSafe for ItemHoveredFlags

§

impl UnwindSafe for Joystick

§

impl UnwindSafe for JoystickHats

§

impl UnwindSafe for Light

§

impl UnwindSafe for LightHandle

§

impl UnwindSafe for ListClipper

§

impl UnwindSafe for Mat2

§

impl UnwindSafe for Mat3

§

impl UnwindSafe for Mat3A

§

impl UnwindSafe for Mat4

§

impl UnwindSafe for Mesh

§

impl UnwindSafe for MeshData

§

impl UnwindSafe for MeshHandle

§

impl UnwindSafe for Model

§

impl UnwindSafe for ModelHandle

§

impl UnwindSafe for Modifiers

§

impl UnwindSafe for Monitor

§

impl UnwindSafe for OwnedDrawData

§

impl UnwindSafe for PRenderContext

§

impl UnwindSafe for PWindow

§

impl UnwindSafe for PassthroughCallback

§

impl UnwindSafe for PixelImage

§

impl UnwindSafe for Quad

§

impl UnwindSafe for Quat

§

impl UnwindSafe for RenderContext

§

impl UnwindSafe for Renderer

§

impl UnwindSafe for RussimpNodeData

§

impl UnwindSafe for SelectableFlags

§

impl UnwindSafe for Shader

§

impl UnwindSafe for SharedFontAtlas

§

impl UnwindSafe for SkeletalMesh

§

impl UnwindSafe for SkeletalMeshHandle

§

impl UnwindSafe for SkeletalVertex

§

impl UnwindSafe for SliderFlags

§

impl UnwindSafe for Sphere

§

impl UnwindSafe for Style

§

impl UnwindSafe for TabBarFlags

§

impl UnwindSafe for TabItemFlags

§

impl UnwindSafe for TextCallbackData

§

impl UnwindSafe for TextFilter

§

impl UnwindSafe for TextureHandle

§

impl UnwindSafe for TextureId

§

impl UnwindSafe for ThreadSafeGlfw

§

impl UnwindSafe for TreeNodeFlags

§

impl UnwindSafe for chaos_framework::Triangle

§

impl UnwindSafe for U16Vec2

§

impl UnwindSafe for U16Vec3

§

impl UnwindSafe for U16Vec4

§

impl UnwindSafe for U64Vec2

§

impl UnwindSafe for U64Vec3

§

impl UnwindSafe for U64Vec4

§

impl UnwindSafe for UVec2

§

impl UnwindSafe for UVec3

§

impl UnwindSafe for UVec4

§

impl UnwindSafe for Ui

§

impl UnwindSafe for UiBuffer

§

impl UnwindSafe for Vec2

§

impl UnwindSafe for Vec3

§

impl UnwindSafe for Vec3A

§

impl UnwindSafe for Vec4

§

impl UnwindSafe for Version

§

impl UnwindSafe for Vertex

§

impl UnwindSafe for VidMode

§

impl UnwindSafe for WindowFlags

§

impl UnwindSafe for WindowFocusedFlags

§

impl UnwindSafe for WindowHoveredFlags

§

impl UnwindSafe for ImColor

§

impl UnwindSafe for ImDrawChannel

§

impl UnwindSafe for ImDrawCmd

§

impl UnwindSafe for ImDrawCmdHeader

§

impl UnwindSafe for ImDrawData

§

impl UnwindSafe for ImDrawList

§

impl UnwindSafe for ImDrawListSharedData

§

impl UnwindSafe for ImDrawListSplitter

§

impl UnwindSafe for ImDrawVert

§

impl UnwindSafe for ImFont

§

impl UnwindSafe for ImFontAtlas

§

impl UnwindSafe for ImFontAtlasCustomRect

§

impl UnwindSafe for ImFontBuilderIO

§

impl UnwindSafe for ImFontConfig

§

impl UnwindSafe for ImFontGlyph

§

impl UnwindSafe for ImFontGlyphRangesBuilder

§

impl UnwindSafe for ImGuiContext

§

impl UnwindSafe for ImGuiIO

§

impl UnwindSafe for ImGuiInputTextCallbackData

§

impl UnwindSafe for ImGuiKeyData

§

impl UnwindSafe for ImGuiListClipper

§

impl UnwindSafe for ImGuiOnceUponAFrame

§

impl UnwindSafe for ImGuiPayload

§

impl UnwindSafe for ImGuiPlatformImeData

§

impl UnwindSafe for ImGuiSizeCallbackData

§

impl UnwindSafe for ImGuiStorage

§

impl UnwindSafe for ImGuiStoragePair

§

impl UnwindSafe for ImGuiStyle

§

impl UnwindSafe for ImGuiTableColumnSortSpecs

§

impl UnwindSafe for ImGuiTableSortSpecs

§

impl UnwindSafe for ImGuiTextBuffer

§

impl UnwindSafe for ImGuiTextFilter

§

impl UnwindSafe for ImGuiTextRange

§

impl UnwindSafe for ImGuiViewport

§

impl UnwindSafe for ImVec2

§

impl UnwindSafe for ImVec4

§

impl UnwindSafe for ImVector_ImDrawChannel

§

impl UnwindSafe for ImVector_ImDrawCmd

§

impl UnwindSafe for ImVector_ImDrawIdx

§

impl UnwindSafe for ImVector_ImDrawVert

§

impl UnwindSafe for ImVector_ImFontAtlasCustomRect

§

impl UnwindSafe for ImVector_ImFontConfig

§

impl UnwindSafe for ImVector_ImFontGlyph

§

impl UnwindSafe for ImVector_ImFontPtr

§

impl UnwindSafe for ImVector_ImGuiStoragePair

§

impl UnwindSafe for ImVector_ImGuiTextRange

§

impl UnwindSafe for ImVector_ImTextureID

§

impl UnwindSafe for ImVector_ImU32

§

impl UnwindSafe for ImVector_ImVec2

§

impl UnwindSafe for ImVector_ImVec4

§

impl UnwindSafe for ImVector_ImWchar

§

impl UnwindSafe for ImVector_char

§

impl UnwindSafe for ImVector_float

§

impl UnwindSafe for AllocError

§

impl UnwindSafe for Layout

§

impl UnwindSafe for LayoutError

§

impl UnwindSafe for TypeId

§

impl UnwindSafe for CpuidResult

§

impl UnwindSafe for __m128

§

impl UnwindSafe for __m128bh

§

impl UnwindSafe for __m128d

§

impl UnwindSafe for __m128h

§

impl UnwindSafe for __m128i

§

impl UnwindSafe for __m256

§

impl UnwindSafe for __m256bh

§

impl UnwindSafe for __m256d

§

impl UnwindSafe for __m256h

§

impl UnwindSafe for __m256i

§

impl UnwindSafe for __m512

§

impl UnwindSafe for __m512bh

§

impl UnwindSafe for __m512d

§

impl UnwindSafe for __m512h

§

impl UnwindSafe for __m512i

§

impl UnwindSafe for bf16

§

impl UnwindSafe for TryFromSliceError

§

impl UnwindSafe for chaos_framework::__core::ascii::EscapeDefault

§

impl UnwindSafe for ByteStr

§

impl UnwindSafe for BorrowError

§

impl UnwindSafe for BorrowMutError

§

impl UnwindSafe for CharTryFromError

§

impl UnwindSafe for DecodeUtf16Error

§

impl UnwindSafe for chaos_framework::__core::char::EscapeDebug

§

impl UnwindSafe for chaos_framework::__core::char::EscapeDefault

§

impl UnwindSafe for chaos_framework::__core::char::EscapeUnicode

§

impl UnwindSafe for ParseCharError

§

impl UnwindSafe for ToLowercase

§

impl UnwindSafe for ToUppercase

§

impl UnwindSafe for TryFromCharError

§

impl UnwindSafe for CStr

§

impl UnwindSafe for FromBytesUntilNulError

§

impl UnwindSafe for chaos_framework::__core::fmt::Error

§

impl UnwindSafe for FormattingOptions

§

impl UnwindSafe for SipHasher

§

impl UnwindSafe for Last

§

impl UnwindSafe for ReturnToArg

§

impl UnwindSafe for UnwindActionArg

§

impl UnwindSafe for PhantomPinned

§

impl UnwindSafe for Assume

§

impl UnwindSafe for AddrParseError

§

impl UnwindSafe for Ipv4Addr

§

impl UnwindSafe for Ipv6Addr

§

impl UnwindSafe for SocketAddrV4

§

impl UnwindSafe for SocketAddrV6

§

impl UnwindSafe for ParseFloatError

§

impl UnwindSafe for ParseIntError

§

impl UnwindSafe for TryFromIntError

§

impl UnwindSafe for RangeFull

§

impl UnwindSafe for chaos_framework::__core::ptr::Alignment

§

impl UnwindSafe for ParseBoolError

§

impl UnwindSafe for Utf8Error

§

impl UnwindSafe for AtomicBool

§

impl UnwindSafe for AtomicI8

§

impl UnwindSafe for AtomicI16

§

impl UnwindSafe for AtomicI32

§

impl UnwindSafe for AtomicI64

§

impl UnwindSafe for AtomicIsize

§

impl UnwindSafe for AtomicU8

§

impl UnwindSafe for AtomicU16

§

impl UnwindSafe for AtomicU32

§

impl UnwindSafe for AtomicU64

§

impl UnwindSafe for AtomicUsize

§

impl UnwindSafe for LocalWaker

§

impl UnwindSafe for RawWaker

§

impl UnwindSafe for RawWakerVTable

§

impl UnwindSafe for Waker

§

impl UnwindSafe for Duration

§

impl UnwindSafe for TryFromFloatSecsError

§

impl UnwindSafe for ImGuiStoragePair__bindgen_ty_1

§

impl UnwindSafe for Big8x3

§

impl UnwindSafe for Big32x40

§

impl UnwindSafe for CodePointInner

§

impl UnwindSafe for Decimal

§

impl UnwindSafe for DecimalSeq

§

impl UnwindSafe for Decoded

§

impl UnwindSafe for FullDecoded

§

impl UnwindSafe for I32NotAllOnes

§

impl UnwindSafe for I64NotAllOnes

§

impl UnwindSafe for Nanoseconds

§

impl UnwindSafe for NonZeroCharInner

§

impl UnwindSafe for NonZeroI8Inner

§

impl UnwindSafe for NonZeroI16Inner

§

impl UnwindSafe for NonZeroI32Inner

§

impl UnwindSafe for NonZeroI64Inner

§

impl UnwindSafe for NonZeroI128Inner

§

impl UnwindSafe for NonZeroIsizeInner

§

impl UnwindSafe for NonZeroU8Inner

§

impl UnwindSafe for NonZeroU16Inner

§

impl UnwindSafe for NonZeroU32Inner

§

impl UnwindSafe for NonZeroU64Inner

§

impl UnwindSafe for NonZeroU128Inner

§

impl UnwindSafe for NonZeroUsizeInner

§

impl UnwindSafe for Sign

§

impl UnwindSafe for TryCaptureWithDebug

§

impl UnwindSafe for TryCaptureWithoutDebug

§

impl UnwindSafe for U32NotAllOnes

§

impl UnwindSafe for U64NotAllOnes

§

impl UnwindSafe for UsizeNoHighBit

§

impl<'a> !UnwindSafe for ChildWindowToken<'a>

§

impl<'a> !UnwindSafe for ColorStackToken<'a>

§

impl<'a> !UnwindSafe for ComboBoxToken<'a>

§

impl<'a> !UnwindSafe for DisabledToken<'a>

§

impl<'a> !UnwindSafe for FontStackToken<'a>

§

impl<'a> !UnwindSafe for GroupToken<'a>

§

impl<'a> !UnwindSafe for IdStackToken<'a>

§

impl<'a> !UnwindSafe for ItemFlagsStackToken<'a>

§

impl<'a> !UnwindSafe for ItemWidthStackToken<'a>

§

impl<'a> !UnwindSafe for ListBoxToken<'a>

§

impl<'a> !UnwindSafe for MainMenuBarToken<'a>

§

impl<'a> !UnwindSafe for MenuBarToken<'a>

§

impl<'a> !UnwindSafe for MenuToken<'a>

§

impl<'a> !UnwindSafe for PopupToken<'a>

§

impl<'a> !UnwindSafe for PushAllowKeyboardFocusToken<'a>

§

impl<'a> !UnwindSafe for PushButtonRepeatToken<'a>

§

impl<'a> !UnwindSafe for StyleStackToken<'a>

§

impl<'a> !UnwindSafe for TabBarToken<'a>

§

impl<'a> !UnwindSafe for TabItemToken<'a>

§

impl<'a> !UnwindSafe for TextWrapPosStackToken<'a>

§

impl<'a> !UnwindSafe for TooltipToken<'a>

§

impl<'a> !UnwindSafe for TreeNodeToken<'a>

§

impl<'a> !UnwindSafe for WindowToken<'a>

§

impl<'a> !UnwindSafe for Request<'a>

§

impl<'a> !UnwindSafe for Source<'a>

§

impl<'a> !UnwindSafe for Formatter<'a>

§

impl<'a> !UnwindSafe for BorrowedCursor<'a>

§

impl<'a> !UnwindSafe for ContextBuilder<'a>

§

impl<'a> UnwindSafe for FontSource<'a>

§

impl<'a> UnwindSafe for Texture<'a>

§

impl<'a> UnwindSafe for WindowMode<'a>

§

impl<'a> UnwindSafe for Utf8Pattern<'a>

§

impl<'a> UnwindSafe for DrawCmdIterator<'a>

§

impl<'a> UnwindSafe for DrawListIterator<'a>

§

impl<'a> UnwindSafe for FontAtlasTexture<'a>

§

impl<'a> UnwindSafe for chaos_framework::__core::ffi::c_str::Bytes<'a>

§

impl<'a> UnwindSafe for Arguments<'a>

§

impl<'a> UnwindSafe for PhantomContravariantLifetime<'a>

§

impl<'a> UnwindSafe for PhantomCovariantLifetime<'a>

§

impl<'a> UnwindSafe for PhantomInvariantLifetime<'a>

§

impl<'a> UnwindSafe for EscapeAscii<'a>

§

impl<'a> UnwindSafe for CharSearcher<'a>

§

impl<'a> UnwindSafe for chaos_framework::__core::str::Bytes<'a>

§

impl<'a> UnwindSafe for CharIndices<'a>

§

impl<'a> UnwindSafe for Chars<'a>

§

impl<'a> UnwindSafe for EncodeUtf16<'a>

§

impl<'a> UnwindSafe for chaos_framework::__core::str::EscapeDebug<'a>

§

impl<'a> UnwindSafe for chaos_framework::__core::str::EscapeDefault<'a>

§

impl<'a> UnwindSafe for chaos_framework::__core::str::EscapeUnicode<'a>

§

impl<'a> UnwindSafe for Lines<'a>

§

impl<'a> UnwindSafe for LinesAny<'a>

§

impl<'a> UnwindSafe for SplitAsciiWhitespace<'a>

§

impl<'a> UnwindSafe for SplitWhitespace<'a>

§

impl<'a> UnwindSafe for Utf8Chunk<'a>

§

impl<'a> UnwindSafe for Utf8Chunks<'a>

§

impl<'a> UnwindSafe for Context<'a>

§

impl<'a> UnwindSafe for Location<'a>

§

impl<'a> UnwindSafe for PanicInfo<'a>

§

impl<'a> UnwindSafe for PanicMessage<'a>

§

impl<'a> UnwindSafe for Formatted<'a>

§

impl<'a> UnwindSafe for Part<'a>

§

impl<'a, 'b> !UnwindSafe for DebugList<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugMap<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugSet<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugStruct<'a, 'b>

§

impl<'a, 'b> !UnwindSafe for DebugTuple<'a, 'b>

§

impl<'a, 'b> UnwindSafe for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> UnwindSafe for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> UnwindSafe for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, 'f> !UnwindSafe for VaList<'a, 'f>

§

impl<'a, A> !UnwindSafe for chaos_framework::__core::option::IterMut<'a, A>

§

impl<'a, A> UnwindSafe for chaos_framework::__core::option::Iter<'a, A>
where A: RefUnwindSafe,

§

impl<'a, F> UnwindSafe for CharPredicateSearcher<'a, F>
where F: UnwindSafe,

§

impl<'a, I> !UnwindSafe for ByRefSized<'a, I>

§

impl<'a, Message> UnwindSafe for FlushedMessages<'a, Message>

§

impl<'a, P> UnwindSafe for MatchIndices<'a, P>
where <P as Pattern>::Searcher<'a>: UnwindSafe,

§

impl<'a, P> UnwindSafe for Matches<'a, P>
where <P as Pattern>::Searcher<'a>: UnwindSafe,

§

impl<'a, P> UnwindSafe for RMatchIndices<'a, P>
where <P as Pattern>::Searcher<'a>: UnwindSafe,

§

impl<'a, P> UnwindSafe for RMatches<'a, P>
where <P as Pattern>::Searcher<'a>: UnwindSafe,

§

impl<'a, P> UnwindSafe for chaos_framework::__core::str::RSplit<'a, P>
where <P as Pattern>::Searcher<'a>: UnwindSafe,

§

impl<'a, P> UnwindSafe for chaos_framework::__core::str::RSplitN<'a, P>
where <P as Pattern>::Searcher<'a>: UnwindSafe,

§

impl<'a, P> UnwindSafe for RSplitTerminator<'a, P>
where <P as Pattern>::Searcher<'a>: UnwindSafe,

§

impl<'a, P> UnwindSafe for chaos_framework::__core::str::Split<'a, P>
where <P as Pattern>::Searcher<'a>: UnwindSafe,

§

impl<'a, P> UnwindSafe for chaos_framework::__core::str::SplitInclusive<'a, P>
where <P as Pattern>::Searcher<'a>: UnwindSafe,

§

impl<'a, P> UnwindSafe for chaos_framework::__core::str::SplitN<'a, P>
where <P as Pattern>::Searcher<'a>: UnwindSafe,

§

impl<'a, P> UnwindSafe for SplitTerminator<'a, P>
where <P as Pattern>::Searcher<'a>: UnwindSafe,

§

impl<'a, T> !UnwindSafe for TabItem<'a, T>

§

impl<'a, T> !UnwindSafe for chaos_framework::__core::result::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for ChunksExactMut<'a, T>

§

impl<'a, T> !UnwindSafe for ChunksMut<'a, T>

§

impl<'a, T> !UnwindSafe for chaos_framework::__core::slice::IterMut<'a, T>

§

impl<'a, T> !UnwindSafe for RChunksExactMut<'a, T>

§

impl<'a, T> !UnwindSafe for RChunksMut<'a, T>

§

impl<'a, T> UnwindSafe for chaos_framework::__core::result::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for Chunks<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for ChunksExact<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for chaos_framework::__core::slice::Iter<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for RChunks<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for RChunksExact<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> UnwindSafe for Windows<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T, L = &'static str> !UnwindSafe for TreeNode<'a, T, L>

§

impl<'a, T, P> !UnwindSafe for ChunkByMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for RSplitMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for RSplitNMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for SplitInclusiveMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for SplitMut<'a, T, P>

§

impl<'a, T, P> !UnwindSafe for SplitNMut<'a, T, P>

§

impl<'a, T, P> UnwindSafe for ChunkBy<'a, T, P>

§

impl<'a, T, P> UnwindSafe for chaos_framework::__core::slice::RSplit<'a, T, P>

§

impl<'a, T, P> UnwindSafe for chaos_framework::__core::slice::RSplitN<'a, T, P>

§

impl<'a, T, P> UnwindSafe for chaos_framework::__core::slice::Split<'a, T, P>

§

impl<'a, T, P> UnwindSafe for chaos_framework::__core::slice::SplitInclusive<'a, T, P>

§

impl<'a, T, P> UnwindSafe for chaos_framework::__core::slice::SplitN<'a, T, P>

§

impl<'a, T, const N: usize> UnwindSafe for ArrayWindows<'a, T, N>
where T: RefUnwindSafe,

§

impl<'a, const N: usize> UnwindSafe for CharArraySearcher<'a, N>

§

impl<'b, T> !UnwindSafe for Ref<'b, T>

§

impl<'b, T> !UnwindSafe for RefMut<'b, T>

§

impl<'data> !UnwindSafe for BorrowedBuf<'data>

§

impl<'f> UnwindSafe for VaListImpl<'f>

§

impl<'ui> !UnwindSafe for DragDropSourceToolTip<'ui>

§

impl<'ui> !UnwindSafe for BezierCurve<'ui>

§

impl<'ui> !UnwindSafe for chaos_framework::draw_list::Circle<'ui>

§

impl<'ui> !UnwindSafe for chaos_framework::draw_list::Image<'ui>

§

impl<'ui> !UnwindSafe for ImageQuad<'ui>

§

impl<'ui> !UnwindSafe for ImageRounded<'ui>

§

impl<'ui> !UnwindSafe for Line<'ui>

§

impl<'ui> !UnwindSafe for Polyline<'ui>

§

impl<'ui> !UnwindSafe for Rect<'ui>

§

impl<'ui> !UnwindSafe for chaos_framework::draw_list::Triangle<'ui>

§

impl<'ui> !UnwindSafe for ChannelsSplit<'ui>

§

impl<'ui> !UnwindSafe for ChildWindow<'ui>

§

impl<'ui> !UnwindSafe for DragDropTarget<'ui>

§

impl<'ui> !UnwindSafe for DrawListMut<'ui>

§

impl<'ui, 'a, Label, C> !UnwindSafe for ColorEdit3<'ui, 'a, Label, C>

§

impl<'ui, 'a, Label, Color> !UnwindSafe for ColorPicker3<'ui, 'a, Label, Color>

§

impl<'ui, 'a, Label, Color> !UnwindSafe for ColorPicker4<'ui, 'a, Label, Color>

§

impl<'ui, 'a, T, C> !UnwindSafe for ColorEdit4<'ui, 'a, T, C>

§

impl<'ui, 'p, L> !UnwindSafe for InputInt<'ui, 'p, L>

§

impl<'ui, 'p, L, F = &'static str> !UnwindSafe for InputFloat<'ui, 'p, L, F>

§

impl<'ui, 'p, L, H = &'static str, T = PassthroughCallback> !UnwindSafe for InputText<'ui, 'p, L, H, T>

§

impl<'ui, 'p, L, T = PassthroughCallback> !UnwindSafe for InputTextMultiline<'ui, 'p, L, T>

§

impl<'ui, 'p, L, T> !UnwindSafe for InputInt2<'ui, 'p, L, T>

§

impl<'ui, 'p, L, T> !UnwindSafe for InputInt3<'ui, 'p, L, T>

§

impl<'ui, 'p, L, T> !UnwindSafe for InputInt4<'ui, 'p, L, T>

§

impl<'ui, 'p, L, T, F = &'static str> !UnwindSafe for InputFloat2<'ui, 'p, L, T, F>

§

impl<'ui, 'p, L, T, F = &'static str> !UnwindSafe for InputFloat3<'ui, 'p, L, T, F>

§

impl<'ui, 'p, L, T, F = &'static str> !UnwindSafe for InputFloat4<'ui, 'p, L, T, F>

§

impl<'ui, 'p, Label> !UnwindSafe for PopupModal<'ui, 'p, Label>

§

impl<'ui, 'p, Label, Overlay = &'static str> !UnwindSafe for PlotHistogram<'ui, 'p, Label, Overlay>

§

impl<'ui, 'p, Label, Overlay = &'static str> !UnwindSafe for PlotLines<'ui, 'p, Label, Overlay>

§

impl<'ui, 'p, T, L, F = &'static str> !UnwindSafe for InputScalar<'ui, 'p, T, L, F>

§

impl<'ui, 'p, T, L, F = &'static str> !UnwindSafe for InputScalarN<'ui, 'p, T, L, F>

§

impl<'ui, F> !UnwindSafe for Callback<'ui, F>

§

impl<'ui, Label, Data, Format = &'static str> !UnwindSafe for Slider<'ui, Label, Data, Format>

§

impl<'ui, Label, Preview = &'static str> !UnwindSafe for ComboBox<'ui, Label, Preview>

§

impl<'ui, Label, Shortcut = &'static str> !UnwindSafe for MenuItem<'ui, Label, Shortcut>

§

impl<'ui, StrId> !UnwindSafe for ImageButton<'ui, StrId>

§

impl<'ui, T> !UnwindSafe for ColorButton<'ui, T>

§

impl<'ui, T> !UnwindSafe for DragDropSource<'ui, T>

§

impl<'ui, T> !UnwindSafe for Selectable<'ui, T>

§

impl<A> UnwindSafe for Repeat<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for RepeatN<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for chaos_framework::__core::option::IntoIter<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for IterRange<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for IterRangeFrom<A>
where A: UnwindSafe,

§

impl<A> UnwindSafe for IterRangeInclusive<A>
where A: UnwindSafe,

§

impl<A, B> UnwindSafe for Chain<A, B>
where A: UnwindSafe, B: UnwindSafe,

§

impl<A, B> UnwindSafe for Zip<A, B>
where A: UnwindSafe, B: UnwindSafe,

§

impl<B, C> UnwindSafe for ControlFlow<B, C>
where C: UnwindSafe, B: UnwindSafe,

§

impl<Dyn> !UnwindSafe for DynMetadata<Dyn>

§

impl<E, M> UnwindSafe for Capture<E, M>
where E: UnwindSafe, M: UnwindSafe,

§

impl<F> UnwindSafe for chaos_framework::__core::fmt::FromFn<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for PollFn<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for chaos_framework::__core::iter::FromFn<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for OnceWith<F>
where F: UnwindSafe,

§

impl<F> UnwindSafe for RepeatWith<F>
where F: UnwindSafe,

§

impl<G> UnwindSafe for FromCoroutine<G>
where G: UnwindSafe,

§

impl<H> UnwindSafe for BuildHasherDefault<H>

§

impl<I> UnwindSafe for FromIter<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for DecodeUtf16<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for Cloned<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for Copied<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for Cycle<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for Enumerate<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for Flatten<I>

§

impl<I> UnwindSafe for Fuse<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for Intersperse<I>
where <I as Iterator>::Item: Sized + UnwindSafe, I: UnwindSafe,

§

impl<I> UnwindSafe for Peekable<I>
where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<I> UnwindSafe for Skip<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for StepBy<I>
where I: UnwindSafe,

§

impl<I> UnwindSafe for Take<I>
where I: UnwindSafe,

§

impl<I, F> UnwindSafe for FilterMap<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for Inspect<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F> UnwindSafe for Map<I, F>
where I: UnwindSafe, F: UnwindSafe,

§

impl<I, F, const N: usize> UnwindSafe for MapWindows<I, F, N>
where F: UnwindSafe, I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<I, G> UnwindSafe for IntersperseWith<I, G>
where G: UnwindSafe, <I as Iterator>::Item: UnwindSafe, I: UnwindSafe,

§

impl<I, P> UnwindSafe for Filter<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for MapWhile<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for SkipWhile<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, P> UnwindSafe for TakeWhile<I, P>
where I: UnwindSafe, P: UnwindSafe,

§

impl<I, St, F> UnwindSafe for Scan<I, St, F>
where I: UnwindSafe, F: UnwindSafe, St: UnwindSafe,

§

impl<I, U, F> UnwindSafe for FlatMap<I, U, F>

§

impl<I, const N: usize> UnwindSafe for ArrayChunks<I, N>
where I: UnwindSafe, <I as Iterator>::Item: UnwindSafe,

§

impl<Idx> UnwindSafe for Clamp<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for chaos_framework::__core::ops::Range<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for chaos_framework::__core::ops::RangeFrom<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for chaos_framework::__core::ops::RangeInclusive<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for RangeTo<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for chaos_framework::__core::ops::RangeToInclusive<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for chaos_framework::__core::range::Range<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for chaos_framework::__core::range::RangeFrom<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for chaos_framework::__core::range::RangeInclusive<Idx>
where Idx: UnwindSafe,

§

impl<Idx> UnwindSafe for chaos_framework::__core::range::RangeToInclusive<Idx>
where Idx: UnwindSafe,

§

impl<Label, Data, Format> UnwindSafe for VerticalSlider<Label, Data, Format>
where Label: UnwindSafe, Data: UnwindSafe, Format: UnwindSafe,

§

impl<Label, Format> UnwindSafe for AngleSlider<Label, Format>
where Label: UnwindSafe, Format: UnwindSafe,

§

impl<Ptr> UnwindSafe for Pin<Ptr>
where Ptr: UnwindSafe,

§

impl<Storage> UnwindSafe for __BindgenBitfieldUnit<Storage>
where Storage: UnwindSafe,

§

impl<T> UnwindSafe for TreeNodeId<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Bound<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Option<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Poll<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for DragDropPayloadPod<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for ImVector<T>
where T: RefUnwindSafe,

§

impl<T> UnwindSafe for CollapsingHeader<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for DebugAliases<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for GlfwReceiver<T>

§

impl<T> UnwindSafe for ListBox<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for ProgressBar<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for SecondOrderDynamics<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for TabBar<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Textures<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Cell<T>
where T: UnwindSafe + ?Sized,

§

impl<T> UnwindSafe for chaos_framework::__core::cell::OnceCell<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for RefCell<T>
where T: UnwindSafe + ?Sized,

§

impl<T> UnwindSafe for SyncUnsafeCell<T>
where T: UnwindSafe + ?Sized,

§

impl<T> UnwindSafe for UnsafeCell<T>
where T: UnwindSafe + ?Sized,

§

impl<T> UnwindSafe for Reverse<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for NumBuffer<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Pending<T>

§

impl<T> UnwindSafe for Ready<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Empty<T>

§

impl<T> UnwindSafe for chaos_framework::__core::iter::Once<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Rev<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for PhantomContravariant<T>
where T: ?Sized,

§

impl<T> UnwindSafe for PhantomCovariant<T>
where T: ?Sized,

§

impl<T> UnwindSafe for PhantomData<T>
where T: UnwindSafe + ?Sized,

§

impl<T> UnwindSafe for PhantomInvariant<T>
where T: ?Sized,

§

impl<T> UnwindSafe for Discriminant<T>

§

impl<T> UnwindSafe for ManuallyDrop<T>
where T: UnwindSafe + ?Sized,

§

impl<T> UnwindSafe for Saturating<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Wrapping<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Yeet<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for UnsafePinned<T>
where T: UnwindSafe + ?Sized,

§

impl<T> UnwindSafe for chaos_framework::__core::result::IntoIter<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for AtomicPtr<T>
where T: RefUnwindSafe,

§

impl<T> UnwindSafe for Exclusive<T>
where T: UnwindSafe + ?Sized,

§

impl<T> UnwindSafe for MaybeUninit<T>
where T: UnwindSafe,

§

impl<T> UnwindSafe for Wrapper<T>
where T: UnwindSafe,

§

impl<T, E> UnwindSafe for Result<T, E>
where T: UnwindSafe, E: UnwindSafe,

§

impl<T, F> UnwindSafe for LazyCell<T, F>
where F: UnwindSafe, T: UnwindSafe,

§

impl<T, F> UnwindSafe for Successors<T, F>
where F: UnwindSafe, T: UnwindSafe,

§

impl<T, F> UnwindSafe for DropGuard<T, F>
where T: UnwindSafe, F: UnwindSafe,

§

impl<T, L, F> UnwindSafe for Drag<T, L, F>
where L: UnwindSafe, T: UnwindSafe, F: UnwindSafe,

§

impl<T, L, F, M> UnwindSafe for DragRange<T, L, F, M>

§

impl<T, const N: usize> UnwindSafe for chaos_framework::__core::array::IntoIter<T, N>
where T: UnwindSafe,

§

impl<T, const N: usize> UnwindSafe for Mask<T, N>
where T: UnwindSafe,

§

impl<T, const N: usize> UnwindSafe for Simd<T, N>
where T: UnwindSafe,

§

impl<Y, R> UnwindSafe for CoroutineState<Y, R>
where Y: UnwindSafe, R: UnwindSafe,

§

impl<const N: usize> UnwindSafe for LaneCount<N>