pub struct ToolingAccessStatus {
pub enabled: bool,
pub endpoint_url: Option<String>,
pub enabled_at: Option<String>,
pub endpoint_id: Option<String>,
}Expand description
Current Tooling Access status for the account. enabled is the source of
truth — a previously-provisioned-but-disabled account may still report a
non-null endpoint_url.
Fields§
§enabled: bool§endpoint_url: Option<String>§enabled_at: Option<String>§endpoint_id: Option<String>The provisioned endpoint’s id. Used to fetch the per-network URL map
(get_endpoint_urls) for multichain routing. None on control planes
that don’t yet return it.
Trait Implementations§
Source§impl Clone for ToolingAccessStatus
impl Clone for ToolingAccessStatus
Source§fn clone(&self) -> ToolingAccessStatus
fn clone(&self) -> ToolingAccessStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ToolingAccessStatus
impl Debug for ToolingAccessStatus
Source§impl<'de> Deserialize<'de> for ToolingAccessStatus
impl<'de> Deserialize<'de> for ToolingAccessStatus
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 ToolingAccessStatus
impl RefUnwindSafe for ToolingAccessStatus
impl Send for ToolingAccessStatus
impl Sync for ToolingAccessStatus
impl Unpin for ToolingAccessStatus
impl UnsafeUnpin for ToolingAccessStatus
impl UnwindSafe for ToolingAccessStatus
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