Expand description
Data model for exchanging data with the in-app WAF.
Structs§
- Keyed
- An
WafObject
orTypedWafObject
associated with a key. - Object
Type Error - The error that is returned when a
WafObject
does not have the expectedWafObjectType
. - Unknown
Object Type Error - The error that is returned when a
WafObject
does not have a known, validWafObjectType
. - WafArray
- The WAF object representation of a value of type WafObjectType::Array
- WafBool
- The WAF object representation of a value of type WafObjectType::Bool
- WafFloat
- The WAF object representation of a value of type WafObjectType::Float
- WafInvalid
- The WAF object representation of a value of type WafObjectType::Invalid
- WafIter
- An iterator over an
WafArray
orWafMap
. - WafMap
- The WAF object representation of a value of type WafObjectType::Map
- WafNull
- The WAF object representation of a value of type WafObjectType::Null
- WafObject
- The low-level representation of an arbitrary WAF object.
- WafOwned
- A WAF-owned
WafObject
orTypedWafObject
value. - WafSigned
- The WAF object representation of a value of type WafObjectType::Signed
- WafString
- The WAF object representation of a value of type WafObjectType::String
- WafUnsigned
- The WAF object representation of a value of type WafObjectType::Unsigned
Enums§
- WafObject
Type - Identifies the type of the value stored in a
WafObject
.
Traits§
- Typed
WafObject - This trait is implemented by type-safe interfaces to the
WafObject
, with one implementation for eachWafObjectType
.