pub struct ListTypeDef {
pub proc: Option<Arc<DaggerSessionProc>>,
pub selection: Selection,
pub graphql_client: DynGraphQLClient,
}Fields§
§proc: Option<Arc<DaggerSessionProc>>§selection: Selection§graphql_client: DynGraphQLClientImplementations§
Source§impl ListTypeDef
impl ListTypeDef
Sourcepub fn element_type_def(&self) -> TypeDef
pub fn element_type_def(&self) -> TypeDef
The type of the elements in the list.
Sourcepub async fn id(&self) -> Result<ListTypeDefId, DaggerError>
pub async fn id(&self) -> Result<ListTypeDefId, DaggerError>
A unique identifier for this ListTypeDef.
Trait Implementations§
Source§impl Clone for ListTypeDef
impl Clone for ListTypeDef
Source§fn clone(&self) -> ListTypeDef
fn clone(&self) -> ListTypeDef
Returns a duplicate 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<ListTypeDefId> for ListTypeDef
impl IntoID<ListTypeDefId> for ListTypeDef
fn into_id( self, ) -> Pin<Box<dyn Future<Output = Result<ListTypeDefId, DaggerError>> + Send>>
Auto Trait Implementations§
impl Freeze for ListTypeDef
impl !RefUnwindSafe for ListTypeDef
impl Send for ListTypeDef
impl Sync for ListTypeDef
impl Unpin for ListTypeDef
impl UnsafeUnpin for ListTypeDef
impl !UnwindSafe for ListTypeDef
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