Struct glean_core::upload::PingMetadata
source · pub struct PingMetadata {
pub headers: Option<HeaderMap>,
pub body_has_info_sections: Option<bool>,
pub ping_name: Option<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.
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 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
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Read moresource§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.