pub struct SingleEndpoint {
pub id: String,
pub label: Option<String>,
pub status: Option<String>,
pub chain: String,
pub network: String,
pub http_url: String,
pub wss_url: Option<String>,
pub security: Option<EndpointSecurity>,
pub rate_limits: Option<EndpointRateLimits>,
pub tags: Vec<EndpointTag>,
}Expand description
Full representation of a single endpoint, including its security and rate limits.
Fields§
§id: StringUnique endpoint identifier.
label: Option<String>Human-readable label.
status: Option<String>Current operational status.
chain: StringBlockchain the endpoint serves.
network: StringSpecific network within the chain.
http_url: StringHTTP RPC URL.
wss_url: Option<String>WebSocket RPC URL, when available.
security: Option<EndpointSecurity>Endpoint security configuration.
rate_limits: Option<EndpointRateLimits>Endpoint rate limits.
Tags applied to the endpoint.
Trait Implementations§
Source§impl Clone for SingleEndpoint
impl Clone for SingleEndpoint
Source§fn clone(&self) -> SingleEndpoint
fn clone(&self) -> SingleEndpoint
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SingleEndpoint
impl Debug for SingleEndpoint
Source§impl<'de> Deserialize<'de> for SingleEndpoint
impl<'de> Deserialize<'de> for SingleEndpoint
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 SingleEndpoint
impl RefUnwindSafe for SingleEndpoint
impl Send for SingleEndpoint
impl Sync for SingleEndpoint
impl Unpin for SingleEndpoint
impl UnsafeUnpin for SingleEndpoint
impl UnwindSafe for SingleEndpoint
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