Struct codee::string::JsonSerdeCodec
source · pub struct JsonSerdeCodec;Expand description
A codec for encoding JSON messages that relies on serde_json.
Only available with the json_serde feature enabled.
§Example
ⓘ
// Primitive types:
let (get, set, remove) = use_local_storage::<i32, JsonSerdeCodec>("my-key");
// Structs:
#[derive(Serialize, Deserialize, Clone, Default, PartialEq)]
pub struct MyState {
pub hello: String,
}
let (get, set, remove) = use_local_storage::<MyState, JsonSerdeCodec>("my-struct-key");Trait Implementations§
source§impl<T: DeserializeOwned> Decoder<T> for JsonSerdeCodec
impl<T: DeserializeOwned> Decoder<T> for JsonSerdeCodec
Auto Trait Implementations§
impl Freeze for JsonSerdeCodec
impl RefUnwindSafe for JsonSerdeCodec
impl Send for JsonSerdeCodec
impl Sync for JsonSerdeCodec
impl Unpin for JsonSerdeCodec
impl UnwindSafe for JsonSerdeCodec
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
source§impl<T, D> HybridDecoder<T, str> for D
impl<T, D> HybridDecoder<T, str> for D
type Error = <D as Decoder<T>>::Error
fn decode_str( val: &str, ) -> Result<T, HybridCoderError<<D as HybridDecoder<T, str>>::Error>>
fn decode_bin(_val: &[u8]) -> Result<T, HybridCoderError<Self::Error>>
source§impl<T, E> HybridEncoder<T, String> for E
impl<T, E> HybridEncoder<T, String> for E
type Error = <E as Encoder<T>>::Error
fn encode_str( val: &T, ) -> Result<String, HybridCoderError<<E as HybridEncoder<T, String>>::Error>>
fn encode_bin(_val: &T) -> Result<Vec<u8>, HybridCoderError<Self::Error>>
source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.