mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-08 11:01:47 +01:00
fix(sdk): fixed fmt errors
This commit is contained in:
parent
6e5f407432
commit
10bc6f3846
@ -21,8 +21,8 @@ pub struct SecretId(String);
|
||||
pub struct SocketId(String);
|
||||
#[derive(Serialize, Deserialize)]
|
||||
pub struct BuildArg {
|
||||
pub name: String,
|
||||
pub value: String,
|
||||
pub name: String,
|
||||
}
|
||||
pub struct CacheVolume {
|
||||
pub proc: Arc<Child>,
|
||||
@ -67,7 +67,10 @@ pub struct ContainerPublishOpts {
|
||||
pub struct ContainerWithDefaultArgsOpts {
|
||||
pub args: Option<Vec<String>>,
|
||||
}
|
||||
pub struct ContainerWithDirectoryOpts {}
|
||||
pub struct ContainerWithDirectoryOpts {
|
||||
pub exclude: Option<Vec<String>>,
|
||||
pub include: Option<Vec<String>>,
|
||||
}
|
||||
pub struct ContainerWithExecOpts {
|
||||
pub stdin: Option<String>,
|
||||
pub redirect_stdout: Option<String>,
|
||||
@ -1459,7 +1462,6 @@ impl Socket {
|
||||
query.execute(&graphql_client(&self.conn)).unwrap().unwrap()
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Serialize)]
|
||||
pub enum CacheSharingMode {
|
||||
SHARED,
|
||||
|
Loading…
Reference in New Issue
Block a user