pub struct Endpoint {
pub id: String,
pub name: String,
pub label: Option<String>,
pub status: String,
pub chain: String,
pub network: String,
pub is_dedicated: bool,
pub is_flat_rate: bool,
pub http_url: String,
pub wss_url: Option<String>,
pub tags: Vec<EndpointTag>,
}Expand description
Summary representation of an endpoint in list responses.
Fields§
§id: StringUnique endpoint identifier.
name: StringQuicknode-assigned subdomain.
label: Option<String>Human-readable label.
status: StringCurrent operational status (e.g. active, paused).
chain: StringBlockchain the endpoint serves (e.g. ethereum).
network: StringSpecific network within the chain (e.g. mainnet).
is_dedicated: boolWhether the endpoint is dedicated.
is_flat_rate: boolWhether the endpoint is billed at a flat rate.
http_url: StringHTTP RPC URL.
wss_url: Option<String>WebSocket RPC URL, when available.
Tags applied to the endpoint.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Endpoint
impl<'de> Deserialize<'de> for Endpoint
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 Endpoint
impl RefUnwindSafe for Endpoint
impl Send for Endpoint
impl Sync for Endpoint
impl Unpin for Endpoint
impl UnsafeUnpin for Endpoint
impl UnwindSafe for Endpoint
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