Struct glean_core::metrics::PingType
source · [−]pub struct PingType(_);Expand description
Stores information about a ping.
This is required so that given metric data queued on disk we can send pings with the correct settings, e.g. whether it has a client_id.
Implementations
sourceimpl PingType
impl PingType
sourcepub fn new<A: Into<String>>(
name: A,
include_client_id: bool,
send_if_empty: bool,
reason_codes: Vec<String>
) -> Self
pub fn new<A: Into<String>>(
name: A,
include_client_id: bool,
send_if_empty: bool,
reason_codes: Vec<String>
) -> Self
Creates a new ping type for the given name, whether to include the client ID and whether to send this ping empty.
Arguments
name- The name of the ping.include_client_id- Whether to include the client ID in the assembled ping when submitting.send_if_empty- Whether the ping should be sent empty or not.reason_codes- The valid reason codes for this ping.
sourcepub fn submit(&self, reason: Option<String>)
pub fn submit(&self, reason: Option<String>)
Submits the ping for eventual uploading.
The ping content is assembled as soon as possible, but upload is not guaranteed to happen immediately, as that depends on the upload policies.
If the ping currently contains no content, it will not be sent, unless it is configured to be sent if empty.
Arguments
reason- the reason the ping was triggered. Included in theping_info.reasonpart of the payload.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PingType
impl Send for PingType
impl Sync for PingType
impl Unpin for PingType
impl UnwindSafe for PingType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more