pub struct SecretBindingSummary {
pub server_id: String,
pub refs: Vec<SecretRefEntry>,
pub bindings: Vec<ToolSecretBinding>,
}Expand description
某 server 的 secret binding 概览(辅助 onboarding)。
Fields§
§server_id: String所属 server
refs: Vec<SecretRefEntry>已登记的 secret refs(仅 alias + metadata)
bindings: Vec<ToolSecretBinding>该 server 的 ChildEnv 绑定
Trait Implementations§
Source§impl Clone for SecretBindingSummary
impl Clone for SecretBindingSummary
Source§fn clone(&self) -> SecretBindingSummary
fn clone(&self) -> SecretBindingSummary
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 SecretBindingSummary
impl Debug for SecretBindingSummary
Source§impl<'de> Deserialize<'de> for SecretBindingSummary
impl<'de> Deserialize<'de> for SecretBindingSummary
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 SecretBindingSummary
impl RefUnwindSafe for SecretBindingSummary
impl Send for SecretBindingSummary
impl Sync for SecretBindingSummary
impl Unpin for SecretBindingSummary
impl UnsafeUnpin for SecretBindingSummary
impl UnwindSafe for SecretBindingSummary
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