pub struct LlmVariable {
pub proc: Option<Arc<DaggerSessionProc>>,
pub selection: Selection,
pub graphql_client: DynGraphQLClient,
}Fields§
§proc: Option<Arc<DaggerSessionProc>>§selection: Selection§graphql_client: DynGraphQLClientImplementations§
Source§impl LlmVariable
impl LlmVariable
pub async fn hash(&self) -> Result<String, DaggerError>
Sourcepub async fn id(&self) -> Result<LlmVariableId, DaggerError>
pub async fn id(&self) -> Result<LlmVariableId, DaggerError>
A unique identifier for this LLMVariable.
pub async fn name(&self) -> Result<String, DaggerError>
pub async fn type_name(&self) -> Result<String, DaggerError>
Trait Implementations§
Source§impl Clone for LlmVariable
impl Clone for LlmVariable
Source§fn clone(&self) -> LlmVariable
fn clone(&self) -> LlmVariable
Returns a copy 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 IntoID<LlmVariableId> for LlmVariable
impl IntoID<LlmVariableId> for LlmVariable
fn into_id( self, ) -> Pin<Box<dyn Future<Output = Result<LlmVariableId, DaggerError>> + Send>>
Auto Trait Implementations§
impl Freeze for LlmVariable
impl !RefUnwindSafe for LlmVariable
impl Send for LlmVariable
impl Sync for LlmVariable
impl Unpin for LlmVariable
impl !UnwindSafe for LlmVariable
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