pub struct TeamEndpoint {
pub id: i64,
pub subdomain: String,
pub chain: Option<String>,
pub network: Option<String>,
}Expand description
A team’s endpoint association.
Fields§
§id: i64Endpoint identifier.
subdomain: StringEndpoint subdomain.
chain: Option<String>Blockchain the endpoint serves.
network: Option<String>Network within the chain.
Trait Implementations§
Source§impl Clone for TeamEndpoint
impl Clone for TeamEndpoint
Source§fn clone(&self) -> TeamEndpoint
fn clone(&self) -> TeamEndpoint
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 TeamEndpoint
impl Debug for TeamEndpoint
Source§impl<'de> Deserialize<'de> for TeamEndpoint
impl<'de> Deserialize<'de> for TeamEndpoint
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 TeamEndpoint
impl RefUnwindSafe for TeamEndpoint
impl Send for TeamEndpoint
impl Sync for TeamEndpoint
impl Unpin for TeamEndpoint
impl UnsafeUnpin for TeamEndpoint
impl UnwindSafe for TeamEndpoint
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