pub struct ClientFilesyncMirror {
pub proc: Option<Arc<DaggerSessionProc>>,
pub selection: Selection,
pub graphql_client: DynGraphQLClient,
}Fields§
§proc: Option<Arc<DaggerSessionProc>>§selection: Selection§graphql_client: DynGraphQLClientImplementations§
Source§impl ClientFilesyncMirror
impl ClientFilesyncMirror
Sourcepub async fn id(&self) -> Result<Id, DaggerError>
pub async fn id(&self) -> Result<Id, DaggerError>
A unique identifier for this ClientFilesyncMirror.
Trait Implementations§
Source§impl Clone for ClientFilesyncMirror
impl Clone for ClientFilesyncMirror
Source§fn clone(&self) -> ClientFilesyncMirror
fn clone(&self) -> ClientFilesyncMirror
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 IntoID<Id> for ClientFilesyncMirror
impl IntoID<Id> for ClientFilesyncMirror
Source§impl Loadable for ClientFilesyncMirror
impl Loadable for ClientFilesyncMirror
Source§fn graphql_type() -> &'static str
fn graphql_type() -> &'static str
The GraphQL type name (e.g.
"Container").Source§fn from_query(
proc: Option<Arc<DaggerSessionProc>>,
selection: Selection,
graphql_client: DynGraphQLClient,
) -> Self
fn from_query( proc: Option<Arc<DaggerSessionProc>>, selection: Selection, graphql_client: DynGraphQLClient, ) -> Self
Construct this type from a query selection.
Auto Trait Implementations§
impl Freeze for ClientFilesyncMirror
impl !RefUnwindSafe for ClientFilesyncMirror
impl Send for ClientFilesyncMirror
impl Sync for ClientFilesyncMirror
impl Unpin for ClientFilesyncMirror
impl UnsafeUnpin for ClientFilesyncMirror
impl !UnwindSafe for ClientFilesyncMirror
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