pub struct Payload { /* private fields */ }Expand description
Type-erased user data with an explicit content type tag.
Payload is a dumb carrier: it stores bytes and a tag but does not
validate that the bytes match the tag on construction. Validation
happens on read (e.g. Payload::to_json returns Result).
Use Payload::from_json for a validated construction path.
Implementations§
Source§impl Payload
impl Payload
Sourcepub fn new(content_type: ContentType, bytes: Vec<u8>) -> Self
pub fn new(content_type: ContentType, bytes: Vec<u8>) -> Self
Creates an opaque payload from a content type and raw bytes.
No validation is performed — the bytes are not checked against the
content type. Prefer Payload::from_json when constructing from
a known value. Conversion methods (e.g. Payload::to_json)
validate on read.
Sourcepub fn from_json(value: &Value) -> Result<Self, PayloadError>
pub fn from_json(value: &Value) -> Result<Self, PayloadError>
Serializes a JSON value into a payload tagged as JSON.
§Errors
Returns an error if the JSON value cannot be serialized.
Sourcepub fn to_json(&self) -> Result<Value, PayloadError>
pub fn to_json(&self) -> Result<Value, PayloadError>
Deserializes this payload as a JSON value.
§Errors
Returns an error if the payload is not tagged as JSON or the bytes do not contain valid JSON.
Sourcepub const fn content_type(&self) -> &ContentType
pub const fn content_type(&self) -> &ContentType
Returns the payload content type tag.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Payload
impl<'de> Deserialize<'de> for Payload
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Eq for Payload
impl StructuralPartialEq for Payload
Source§impl TS for Payload
impl TS for Payload
Source§type WithoutGenerics = Payload
type WithoutGenerics = Payload
WithoutGenerics should just be Self.
If the type does have generic parameters, then all generic parameters must be replaced with
a dummy type, e.g ts_rs::Dummy or (). The only requirement for these dummy types is that
EXPORT_TO must be None. Read moreSource§type OptionInnerType = Payload
type OptionInnerType = Payload
std::option::Option<T>, then this associated type is set to T.
All other implementations of TS should set this type to Self instead.Source§fn docs() -> Option<String>
fn docs() -> Option<String>
TS is derived, docs are
automatically read from your doc comments or #[doc = ".."] attributesSource§fn decl_concrete(cfg: &Config) -> String
fn decl_concrete(cfg: &Config) -> String
TS::decl().
If this type is not generic, then this function is equivalent to TS::decl().Source§fn decl(cfg: &Config) -> String
fn decl(cfg: &Config) -> String
type User = { user_id: number, ... }.
This function will panic if the type has no declaration. Read moreSource§fn inline(cfg: &Config) -> String
fn inline(cfg: &Config) -> String
{ user_id: number }.
This function will panic if the type cannot be inlined.Source§fn inline_flattened(cfg: &Config) -> String
fn inline_flattened(cfg: &Config) -> String
Source§fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn output_path() -> Option<PathBuf>
fn output_path() -> Option<PathBuf>
T should be exported, relative to the output directory.
The returned path does not include any base directory. Read moreSource§fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
Source§fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export_all. Read moreSource§fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export. Read more