Struct tc_telemetry::TelemetryEndpoints[][src]

pub struct TelemetryEndpoints(_);

List of telemetry servers we want to talk to. Contains the URL of the server, and the maximum verbosity level.

The URL string can be either a URL or a multiaddress.

Implementations

impl TelemetryEndpoints[src]

pub fn new(endpoints: Vec<(String, u8)>) -> Result<Self, Error>[src]

Create a TelemetryEndpoints based on a list of (String, u8).

impl TelemetryEndpoints[src]

pub fn is_empty(&self) -> bool[src]

Return true if there are no telemetry endpoints, false otherwise.

Trait Implementations

impl Clone for TelemetryEndpoints[src]

impl Debug for TelemetryEndpoints[src]

impl<'de> Deserialize<'de> for TelemetryEndpoints[src]

impl Eq for TelemetryEndpoints[src]

impl Hash for TelemetryEndpoints[src]

impl PartialEq<TelemetryEndpoints> for TelemetryEndpoints[src]

impl Serialize for TelemetryEndpoints[src]

impl StructuralEq for TelemetryEndpoints[src]

impl StructuralPartialEq for TelemetryEndpoints[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,