Expand description
§facet-poke
Thanks to all individual and corporate sponsors, without whom this work could not exist:
Provides tools for building and altering arbitrary Facet types.
§License
Licensed under either of:
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option. Allows poking (writing to) shapes
Structs§
- Guard
- Ensures a value is dropped when the guard is dropped.
- ISet
- Keeps track of which fields were initialized, up to 64 fields
- Peek
List - Lets you read from a list (implements read-only [
ListVTable] proxies) - Peek
List Iter - Iterator over a
PeekList - PeekMap
- Lets you read from a map (implements read-only [
MapVTable] proxies) - Peek
MapIter - Iterator over key-value pairs in a
PeekMap - Peek
Struct - Lets you read from a struct (implements read-only struct operations)
- Peek
Value - Lets you read from a value (implements read-only
ValueVTableproxies) - Poke
Enum - Allows poking an enum with a selected variant (setting fields, etc.)
- Poke
Enum NoVariant - Represents an enum before a variant has been selected
- Poke
List - Allows poking a list (appending, etc.)
- Poke
List Uninit - Allows initializing an uninitialized list
- PokeMap
- Allows poking a map (inserting, etc.)
- Poke
MapUninit - Allows initializing an uninitialized map
- Poke
Struct - Allows poking a struct (setting fields, etc.)
- Poke
Value - Lets you write to a value (implements write-only
ValueVTableproxies)
Enums§
- Peek
- Lets you peek at the innards of a value
- Poke
- Allows writing values of different kinds.
- Variant
Error - All possible errors when getting a variant by index or by name