pub struct PingMetadata {
pub headers: Option<HeaderMap>,
pub body_has_info_sections: Option<bool>,
pub ping_name: Option<String>,
pub uploader_capabilities: Option<Vec<String>>,
}
Expand description
A ping’s metadata, as (optionally) represented on disk.
Anything that isn’t the upload path or the ping body.
Fields§
§headers: Option<HeaderMap>
HTTP headers to include when uploading the ping.
body_has_info_sections: Option<bool>
Whether the body has {client|ping}_info sections.
ping_name: Option<String>
The name of the ping.
uploader_capabilities: Option<Vec<String>>
The capabilities this ping must be uploaded under.
Trait Implementations§
Source§impl Default for PingMetadata
impl Default for PingMetadata
Source§fn default() -> PingMetadata
fn default() -> PingMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PingMetadata
impl<'de> Deserialize<'de> for PingMetadata
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PingMetadata
impl RefUnwindSafe for PingMetadata
impl Send for PingMetadata
impl Sync for PingMetadata
impl Unpin for PingMetadata
impl UnwindSafe for PingMetadata
Blanket Implementations§
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<T> EncodableKey for Twhere
T: Serialize,
impl<T> EncodableKey for Twhere
T: Serialize,
Source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
Source§impl<V> ObjectSerialize for Vwhere
V: Serialize + for<'de> Deserialize<'de>,
impl<V> ObjectSerialize for Vwhere
V: Serialize + for<'de> Deserialize<'de>,
Source§fn from_str(obj: &str) -> Result<V, ObjectError>
fn from_str(obj: &str) -> Result<V, ObjectError>
Deserialize the object from its JSON representation. Read more
Source§fn into_serialized_object(self) -> Result<Value, ObjectError>
fn into_serialized_object(self) -> Result<Value, ObjectError>
Serialize this object into a JSON string.