pub struct DiscoveryEndpoints {
pub llms_txt: String,
pub llms_full_txt: String,
pub llms_admin_txt: Option<String>,
pub skill_index_markdown: String,
pub skill_index_json: String,
pub agent_guide: String,
pub openapi: String,
pub a2a_agent_card: String,
pub ai_plugin: String,
pub mcp: String,
pub health: String,
pub skills_bundle: Option<String>,
}Fields§
§llms_txt: String§llms_full_txt: String§llms_admin_txt: Option<String>§skill_index_markdown: String§skill_index_json: String§agent_guide: String§openapi: String§a2a_agent_card: String§ai_plugin: String§mcp: String§health: String§skills_bundle: Option<String>Trait Implementations§
Source§impl Debug for DiscoveryEndpoints
impl Debug for DiscoveryEndpoints
Auto Trait Implementations§
impl Freeze for DiscoveryEndpoints
impl RefUnwindSafe for DiscoveryEndpoints
impl Send for DiscoveryEndpoints
impl Sync for DiscoveryEndpoints
impl Unpin for DiscoveryEndpoints
impl UnsafeUnpin for DiscoveryEndpoints
impl UnwindSafe for DiscoveryEndpoints
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more