Skip to main content

NoOpBridges

Struct NoOpBridges 

Source
pub struct NoOpBridges;

Trait Implementations§

Source§

impl AegisBridge for NoOpBridges

Source§

fn check_security(&self, _blueprint_json: &str) -> Result<Vec<String>, String>

Source§

fn apply_security_policy(&self, _policy: &str) -> Result<(), String>

Source§

fn audit_blueprint(&self, _blueprint_id: &str) -> Result<String, String>

Source§

impl Clone for NoOpBridges

Source§

fn clone(&self) -> NoOpBridges

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl CognitionBridge for NoOpBridges

Source§

fn analyze_intent(&self, _description: &str) -> Result<String, String>

Source§

fn suggest_architecture(&self, _domain: &str) -> Result<String, String>

Source§

impl CommBridge for NoOpBridges

Source§

fn notify_blueprint_created(&self, _blueprint_id: &str) -> Result<(), String>

Source§

fn broadcast_update(&self, _event: &str) -> Result<(), String>

Source§

impl Debug for NoOpBridges

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for NoOpBridges

Source§

fn default() -> NoOpBridges

Returns the “default value” for a type. Read more
Source§

impl EvolveBridge for NoOpBridges

Source§

fn track_evolution( &self, _blueprint_id: &str, _change: &str, ) -> Result<(), String>

Source§

fn get_evolution_history( &self, _blueprint_id: &str, ) -> Result<Vec<String>, String>

Source§

fn suggest_improvements( &self, _blueprint_json: &str, ) -> Result<Vec<String>, String>

Source§

impl ForgeBridge for NoOpBridges

Source§

fn forge_version(&self) -> &str

Source§

fn generate_blueprint(&self, _intent: &str) -> Result<String, String>

Source§

fn validate_blueprint(&self, _blueprint_json: &str) -> Result<bool, String>

Source§

fn export_blueprint( &self, _blueprint_id: &str, _format: &str, ) -> Result<Vec<u8>, String>

Source§

impl HydraAdapter for NoOpBridges

Source§

impl IdentityBridge for NoOpBridges

Source§

fn authenticate(&self, _token: &str) -> Result<bool, String>

Source§

fn authorize(&self, _action: &str, _resource: &str) -> Result<bool, String>

Source§

impl MemoryBridge for NoOpBridges

Source§

fn store_blueprint_memory( &self, _blueprint_id: &str, _data: &str, ) -> Result<(), String>

Source§

fn recall_blueprint(&self, _query: &str) -> Result<Option<String>, String>

Source§

impl PlanningBridge for NoOpBridges

Source§

fn get_plan_status(&self, _plan_id: &str) -> Result<String, String>

Source§

impl RealityBridge for NoOpBridges

Source§

fn ground_blueprint(&self, _blueprint_id: &str) -> Result<(), String>

Source§

fn check_feasibility(&self, _constraints: &str) -> Result<bool, String>

Source§

impl TimeBridge for NoOpBridges

Source§

fn temporal_context(&self, _topic: &str) -> Vec<String>

Source§

impl VeritasBridge for NoOpBridges

Source§

fn verify_blueprint(&self, _blueprint_json: &str) -> Result<bool, String>

Source§

fn check_consistency(&self, _blueprint_id: &str) -> Result<Vec<String>, String>

Source§

fn validate_contracts(&self, _contracts: &str) -> Result<bool, String>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.