Struct glean_core::ping::Ping
source · pub struct Ping<'a> {
pub doc_id: &'a str,
pub name: &'a str,
pub url_path: &'a str,
pub content: Value,
pub headers: HeaderMap,
pub includes_info_sections: bool,
pub schedules_pings: Vec<String>,
}
Expand description
Holds everything you need to store or send a ping.
Fields§
§doc_id: &'a str
The unique document id.
name: &'a str
The ping’s name.
url_path: &'a str
The path on the server to use when uplaoding this ping.
content: Value
The payload, including *_info
fields.
headers: HeaderMap
The headers to upload with the payload.
includes_info_sections: bool
Whether the content contains {client|ping}_info sections.
schedules_pings: Vec<String>
Other pings that should be scheduled when this ping is sent.
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Ping<'a>
impl<'a> Send for Ping<'a>
impl<'a> Sync for Ping<'a>
impl<'a> Unpin for Ping<'a>
impl<'a> UnwindSafe for Ping<'a>
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 more