Bump typify from `b0df7aa` to `0894f06` (#657)
* Bump typify from `b0df7aa` to `0894f06`
Bumps [typify](https://github.com/oxidecomputer/typify) from `b0df7aa` to `0894f06`.
- [Commits](b0df7aa37a...0894f06e67
)
---
updated-dependencies:
- dependency-name: typify
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
* update fixtures
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Adam H. Leventhal <ahl@oxide.computer>
This commit is contained in:
parent
afa2e7ea7f
commit
66595ccfd6
|
@ -2347,8 +2347,8 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typify"
|
name = "typify"
|
||||||
version = "0.0.14"
|
version = "0.0.15"
|
||||||
source = "git+https://github.com/oxidecomputer/typify#b0df7aa37ae13b61705161075146250224df24f2"
|
source = "git+https://github.com/oxidecomputer/typify#0894f06e6798f24efcbd7134746962aa0e6eb371"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"typify-impl",
|
"typify-impl",
|
||||||
"typify-macro",
|
"typify-macro",
|
||||||
|
@ -2356,8 +2356,8 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typify-impl"
|
name = "typify-impl"
|
||||||
version = "0.0.14"
|
version = "0.0.15"
|
||||||
source = "git+https://github.com/oxidecomputer/typify#b0df7aa37ae13b61705161075146250224df24f2"
|
source = "git+https://github.com/oxidecomputer/typify#0894f06e6798f24efcbd7134746962aa0e6eb371"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"heck",
|
"heck",
|
||||||
"log",
|
"log",
|
||||||
|
@ -2373,8 +2373,8 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typify-macro"
|
name = "typify-macro"
|
||||||
version = "0.0.14"
|
version = "0.0.15"
|
||||||
source = "git+https://github.com/oxidecomputer/typify#b0df7aa37ae13b61705161075146250224df24f2"
|
source = "git+https://github.com/oxidecomputer/typify#0894f06e6798f24efcbd7134746962aa0e6eb371"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
|
|
@ -61,7 +61,7 @@ pub mod types {
|
||||||
|
|
||||||
impl Task {
|
impl Task {
|
||||||
pub fn builder() -> builder::Task {
|
pub fn builder() -> builder::Task {
|
||||||
builder::Task::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -114,7 +114,7 @@ pub mod types {
|
||||||
|
|
||||||
impl TaskEvent {
|
impl TaskEvent {
|
||||||
pub fn builder() -> builder::TaskEvent {
|
pub fn builder() -> builder::TaskEvent {
|
||||||
builder::TaskEvent::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -161,7 +161,7 @@ pub mod types {
|
||||||
|
|
||||||
impl TaskOutput {
|
impl TaskOutput {
|
||||||
pub fn builder() -> builder::TaskOutput {
|
pub fn builder() -> builder::TaskOutput {
|
||||||
builder::TaskOutput::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -209,7 +209,7 @@ pub mod types {
|
||||||
|
|
||||||
impl TaskSubmit {
|
impl TaskSubmit {
|
||||||
pub fn builder() -> builder::TaskSubmit {
|
pub fn builder() -> builder::TaskSubmit {
|
||||||
builder::TaskSubmit::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -244,7 +244,7 @@ pub mod types {
|
||||||
|
|
||||||
impl TaskSubmitResult {
|
impl TaskSubmitResult {
|
||||||
pub fn builder() -> builder::TaskSubmitResult {
|
pub fn builder() -> builder::TaskSubmitResult {
|
||||||
builder::TaskSubmitResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -279,7 +279,7 @@ pub mod types {
|
||||||
|
|
||||||
impl UploadedChunk {
|
impl UploadedChunk {
|
||||||
pub fn builder() -> builder::UploadedChunk {
|
pub fn builder() -> builder::UploadedChunk {
|
||||||
builder::UploadedChunk::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -314,7 +314,7 @@ pub mod types {
|
||||||
|
|
||||||
impl UserCreate {
|
impl UserCreate {
|
||||||
pub fn builder() -> builder::UserCreate {
|
pub fn builder() -> builder::UserCreate {
|
||||||
builder::UserCreate::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -359,7 +359,7 @@ pub mod types {
|
||||||
|
|
||||||
impl UserCreateResult {
|
impl UserCreateResult {
|
||||||
pub fn builder() -> builder::UserCreateResult {
|
pub fn builder() -> builder::UserCreateResult {
|
||||||
builder::UserCreateResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -399,7 +399,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WhoamiResult {
|
impl WhoamiResult {
|
||||||
pub fn builder() -> builder::WhoamiResult {
|
pub fn builder() -> builder::WhoamiResult {
|
||||||
builder::WhoamiResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -463,7 +463,7 @@ pub mod types {
|
||||||
|
|
||||||
impl Worker {
|
impl Worker {
|
||||||
pub fn builder() -> builder::Worker {
|
pub fn builder() -> builder::Worker {
|
||||||
builder::Worker::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -512,7 +512,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerAddOutput {
|
impl WorkerAddOutput {
|
||||||
pub fn builder() -> builder::WorkerAddOutput {
|
pub fn builder() -> builder::WorkerAddOutput {
|
||||||
builder::WorkerAddOutput::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -558,7 +558,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerAppendTask {
|
impl WorkerAppendTask {
|
||||||
pub fn builder() -> builder::WorkerAppendTask {
|
pub fn builder() -> builder::WorkerAppendTask {
|
||||||
builder::WorkerAppendTask::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -598,7 +598,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerBootstrap {
|
impl WorkerBootstrap {
|
||||||
pub fn builder() -> builder::WorkerBootstrap {
|
pub fn builder() -> builder::WorkerBootstrap {
|
||||||
builder::WorkerBootstrap::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -633,7 +633,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerBootstrapResult {
|
impl WorkerBootstrapResult {
|
||||||
pub fn builder() -> builder::WorkerBootstrapResult {
|
pub fn builder() -> builder::WorkerBootstrapResult {
|
||||||
builder::WorkerBootstrapResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -668,7 +668,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerCompleteTask {
|
impl WorkerCompleteTask {
|
||||||
pub fn builder() -> builder::WorkerCompleteTask {
|
pub fn builder() -> builder::WorkerCompleteTask {
|
||||||
builder::WorkerCompleteTask::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -708,7 +708,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerPingResult {
|
impl WorkerPingResult {
|
||||||
pub fn builder() -> builder::WorkerPingResult {
|
pub fn builder() -> builder::WorkerPingResult {
|
||||||
builder::WorkerPingResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -756,7 +756,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerPingTask {
|
impl WorkerPingTask {
|
||||||
pub fn builder() -> builder::WorkerPingTask {
|
pub fn builder() -> builder::WorkerPingTask {
|
||||||
builder::WorkerPingTask::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -801,7 +801,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerTask {
|
impl WorkerTask {
|
||||||
pub fn builder() -> builder::WorkerTask {
|
pub fn builder() -> builder::WorkerTask {
|
||||||
builder::WorkerTask::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -839,7 +839,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkersResult {
|
impl WorkersResult {
|
||||||
pub fn builder() -> builder::WorkersResult {
|
pub fn builder() -> builder::WorkersResult {
|
||||||
builder::WorkersResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,7 @@ pub mod types {
|
||||||
|
|
||||||
impl Task {
|
impl Task {
|
||||||
pub fn builder() -> builder::Task {
|
pub fn builder() -> builder::Task {
|
||||||
builder::Task::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -114,7 +114,7 @@ pub mod types {
|
||||||
|
|
||||||
impl TaskEvent {
|
impl TaskEvent {
|
||||||
pub fn builder() -> builder::TaskEvent {
|
pub fn builder() -> builder::TaskEvent {
|
||||||
builder::TaskEvent::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -161,7 +161,7 @@ pub mod types {
|
||||||
|
|
||||||
impl TaskOutput {
|
impl TaskOutput {
|
||||||
pub fn builder() -> builder::TaskOutput {
|
pub fn builder() -> builder::TaskOutput {
|
||||||
builder::TaskOutput::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -209,7 +209,7 @@ pub mod types {
|
||||||
|
|
||||||
impl TaskSubmit {
|
impl TaskSubmit {
|
||||||
pub fn builder() -> builder::TaskSubmit {
|
pub fn builder() -> builder::TaskSubmit {
|
||||||
builder::TaskSubmit::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -244,7 +244,7 @@ pub mod types {
|
||||||
|
|
||||||
impl TaskSubmitResult {
|
impl TaskSubmitResult {
|
||||||
pub fn builder() -> builder::TaskSubmitResult {
|
pub fn builder() -> builder::TaskSubmitResult {
|
||||||
builder::TaskSubmitResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -279,7 +279,7 @@ pub mod types {
|
||||||
|
|
||||||
impl UploadedChunk {
|
impl UploadedChunk {
|
||||||
pub fn builder() -> builder::UploadedChunk {
|
pub fn builder() -> builder::UploadedChunk {
|
||||||
builder::UploadedChunk::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -314,7 +314,7 @@ pub mod types {
|
||||||
|
|
||||||
impl UserCreate {
|
impl UserCreate {
|
||||||
pub fn builder() -> builder::UserCreate {
|
pub fn builder() -> builder::UserCreate {
|
||||||
builder::UserCreate::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -359,7 +359,7 @@ pub mod types {
|
||||||
|
|
||||||
impl UserCreateResult {
|
impl UserCreateResult {
|
||||||
pub fn builder() -> builder::UserCreateResult {
|
pub fn builder() -> builder::UserCreateResult {
|
||||||
builder::UserCreateResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -399,7 +399,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WhoamiResult {
|
impl WhoamiResult {
|
||||||
pub fn builder() -> builder::WhoamiResult {
|
pub fn builder() -> builder::WhoamiResult {
|
||||||
builder::WhoamiResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -463,7 +463,7 @@ pub mod types {
|
||||||
|
|
||||||
impl Worker {
|
impl Worker {
|
||||||
pub fn builder() -> builder::Worker {
|
pub fn builder() -> builder::Worker {
|
||||||
builder::Worker::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -512,7 +512,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerAddOutput {
|
impl WorkerAddOutput {
|
||||||
pub fn builder() -> builder::WorkerAddOutput {
|
pub fn builder() -> builder::WorkerAddOutput {
|
||||||
builder::WorkerAddOutput::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -558,7 +558,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerAppendTask {
|
impl WorkerAppendTask {
|
||||||
pub fn builder() -> builder::WorkerAppendTask {
|
pub fn builder() -> builder::WorkerAppendTask {
|
||||||
builder::WorkerAppendTask::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -598,7 +598,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerBootstrap {
|
impl WorkerBootstrap {
|
||||||
pub fn builder() -> builder::WorkerBootstrap {
|
pub fn builder() -> builder::WorkerBootstrap {
|
||||||
builder::WorkerBootstrap::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -633,7 +633,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerBootstrapResult {
|
impl WorkerBootstrapResult {
|
||||||
pub fn builder() -> builder::WorkerBootstrapResult {
|
pub fn builder() -> builder::WorkerBootstrapResult {
|
||||||
builder::WorkerBootstrapResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -668,7 +668,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerCompleteTask {
|
impl WorkerCompleteTask {
|
||||||
pub fn builder() -> builder::WorkerCompleteTask {
|
pub fn builder() -> builder::WorkerCompleteTask {
|
||||||
builder::WorkerCompleteTask::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -708,7 +708,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerPingResult {
|
impl WorkerPingResult {
|
||||||
pub fn builder() -> builder::WorkerPingResult {
|
pub fn builder() -> builder::WorkerPingResult {
|
||||||
builder::WorkerPingResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -756,7 +756,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerPingTask {
|
impl WorkerPingTask {
|
||||||
pub fn builder() -> builder::WorkerPingTask {
|
pub fn builder() -> builder::WorkerPingTask {
|
||||||
builder::WorkerPingTask::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -801,7 +801,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkerTask {
|
impl WorkerTask {
|
||||||
pub fn builder() -> builder::WorkerTask {
|
pub fn builder() -> builder::WorkerTask {
|
||||||
builder::WorkerTask::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -839,7 +839,7 @@ pub mod types {
|
||||||
|
|
||||||
impl WorkersResult {
|
impl WorkersResult {
|
||||||
pub fn builder() -> builder::WorkersResult {
|
pub fn builder() -> builder::WorkersResult {
|
||||||
builder::WorkersResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ pub mod types {
|
||||||
|
|
||||||
impl EnrolBody {
|
impl EnrolBody {
|
||||||
pub fn builder() -> builder::EnrolBody {
|
pub fn builder() -> builder::EnrolBody {
|
||||||
builder::EnrolBody::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,7 +83,7 @@ pub mod types {
|
||||||
|
|
||||||
impl GlobalJobsResult {
|
impl GlobalJobsResult {
|
||||||
pub fn builder() -> builder::GlobalJobsResult {
|
pub fn builder() -> builder::GlobalJobsResult {
|
||||||
builder::GlobalJobsResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -129,7 +129,7 @@ pub mod types {
|
||||||
|
|
||||||
impl OutputRecord {
|
impl OutputRecord {
|
||||||
pub fn builder() -> builder::OutputRecord {
|
pub fn builder() -> builder::OutputRecord {
|
||||||
builder::OutputRecord::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -170,7 +170,7 @@ pub mod types {
|
||||||
|
|
||||||
impl PingResult {
|
impl PingResult {
|
||||||
pub fn builder() -> builder::PingResult {
|
pub fn builder() -> builder::PingResult {
|
||||||
builder::PingResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -224,7 +224,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportFinishBody {
|
impl ReportFinishBody {
|
||||||
pub fn builder() -> builder::ReportFinishBody {
|
pub fn builder() -> builder::ReportFinishBody {
|
||||||
builder::ReportFinishBody::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -282,7 +282,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportId {
|
impl ReportId {
|
||||||
pub fn builder() -> builder::ReportId {
|
pub fn builder() -> builder::ReportId {
|
||||||
builder::ReportId::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -323,7 +323,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportOutputBody {
|
impl ReportOutputBody {
|
||||||
pub fn builder() -> builder::ReportOutputBody {
|
pub fn builder() -> builder::ReportOutputBody {
|
||||||
builder::ReportOutputBody::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -359,7 +359,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportResult {
|
impl ReportResult {
|
||||||
pub fn builder() -> builder::ReportResult {
|
pub fn builder() -> builder::ReportResult {
|
||||||
builder::ReportResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -406,7 +406,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportStartBody {
|
impl ReportStartBody {
|
||||||
pub fn builder() -> builder::ReportStartBody {
|
pub fn builder() -> builder::ReportStartBody {
|
||||||
builder::ReportStartBody::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -470,7 +470,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportSummary {
|
impl ReportSummary {
|
||||||
pub fn builder() -> builder::ReportSummary {
|
pub fn builder() -> builder::ReportSummary {
|
||||||
builder::ReportSummary::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ pub mod types {
|
||||||
|
|
||||||
impl EnrolBody {
|
impl EnrolBody {
|
||||||
pub fn builder() -> builder::EnrolBody {
|
pub fn builder() -> builder::EnrolBody {
|
||||||
builder::EnrolBody::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,7 +83,7 @@ pub mod types {
|
||||||
|
|
||||||
impl GlobalJobsResult {
|
impl GlobalJobsResult {
|
||||||
pub fn builder() -> builder::GlobalJobsResult {
|
pub fn builder() -> builder::GlobalJobsResult {
|
||||||
builder::GlobalJobsResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -129,7 +129,7 @@ pub mod types {
|
||||||
|
|
||||||
impl OutputRecord {
|
impl OutputRecord {
|
||||||
pub fn builder() -> builder::OutputRecord {
|
pub fn builder() -> builder::OutputRecord {
|
||||||
builder::OutputRecord::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -170,7 +170,7 @@ pub mod types {
|
||||||
|
|
||||||
impl PingResult {
|
impl PingResult {
|
||||||
pub fn builder() -> builder::PingResult {
|
pub fn builder() -> builder::PingResult {
|
||||||
builder::PingResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -224,7 +224,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportFinishBody {
|
impl ReportFinishBody {
|
||||||
pub fn builder() -> builder::ReportFinishBody {
|
pub fn builder() -> builder::ReportFinishBody {
|
||||||
builder::ReportFinishBody::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -282,7 +282,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportId {
|
impl ReportId {
|
||||||
pub fn builder() -> builder::ReportId {
|
pub fn builder() -> builder::ReportId {
|
||||||
builder::ReportId::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -323,7 +323,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportOutputBody {
|
impl ReportOutputBody {
|
||||||
pub fn builder() -> builder::ReportOutputBody {
|
pub fn builder() -> builder::ReportOutputBody {
|
||||||
builder::ReportOutputBody::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -359,7 +359,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportResult {
|
impl ReportResult {
|
||||||
pub fn builder() -> builder::ReportResult {
|
pub fn builder() -> builder::ReportResult {
|
||||||
builder::ReportResult::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -406,7 +406,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportStartBody {
|
impl ReportStartBody {
|
||||||
pub fn builder() -> builder::ReportStartBody {
|
pub fn builder() -> builder::ReportStartBody {
|
||||||
builder::ReportStartBody::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -470,7 +470,7 @@ pub mod types {
|
||||||
|
|
||||||
impl ReportSummary {
|
impl ReportSummary {
|
||||||
pub fn builder() -> builder::ReportSummary {
|
pub fn builder() -> builder::ReportSummary {
|
||||||
builder::ReportSummary::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -107,7 +107,7 @@ pub mod types {
|
||||||
|
|
||||||
impl CrucibleOpts {
|
impl CrucibleOpts {
|
||||||
pub fn builder() -> builder::CrucibleOpts {
|
pub fn builder() -> builder::CrucibleOpts {
|
||||||
builder::CrucibleOpts::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -155,7 +155,7 @@ pub mod types {
|
||||||
|
|
||||||
impl DiskAttachment {
|
impl DiskAttachment {
|
||||||
pub fn builder() -> builder::DiskAttachment {
|
pub fn builder() -> builder::DiskAttachment {
|
||||||
builder::DiskAttachment::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -269,7 +269,7 @@ pub mod types {
|
||||||
|
|
||||||
impl DiskRequest {
|
impl DiskRequest {
|
||||||
pub fn builder() -> builder::DiskRequest {
|
pub fn builder() -> builder::DiskRequest {
|
||||||
builder::DiskRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -315,7 +315,7 @@ pub mod types {
|
||||||
|
|
||||||
impl Error {
|
impl Error {
|
||||||
pub fn builder() -> builder::Error {
|
pub fn builder() -> builder::Error {
|
||||||
builder::Error::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -371,7 +371,7 @@ pub mod types {
|
||||||
|
|
||||||
impl Instance {
|
impl Instance {
|
||||||
pub fn builder() -> builder::Instance {
|
pub fn builder() -> builder::Instance {
|
||||||
builder::Instance::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -441,7 +441,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceEnsureRequest {
|
impl InstanceEnsureRequest {
|
||||||
pub fn builder() -> builder::InstanceEnsureRequest {
|
pub fn builder() -> builder::InstanceEnsureRequest {
|
||||||
builder::InstanceEnsureRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -478,7 +478,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceEnsureResponse {
|
impl InstanceEnsureResponse {
|
||||||
pub fn builder() -> builder::InstanceEnsureResponse {
|
pub fn builder() -> builder::InstanceEnsureResponse {
|
||||||
builder::InstanceEnsureResponse::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -513,7 +513,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceGetResponse {
|
impl InstanceGetResponse {
|
||||||
pub fn builder() -> builder::InstanceGetResponse {
|
pub fn builder() -> builder::InstanceGetResponse {
|
||||||
builder::InstanceGetResponse::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -560,7 +560,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceMigrateInitiateRequest {
|
impl InstanceMigrateInitiateRequest {
|
||||||
pub fn builder() -> builder::InstanceMigrateInitiateRequest {
|
pub fn builder() -> builder::InstanceMigrateInitiateRequest {
|
||||||
builder::InstanceMigrateInitiateRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -596,7 +596,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceMigrateInitiateResponse {
|
impl InstanceMigrateInitiateResponse {
|
||||||
pub fn builder() -> builder::InstanceMigrateInitiateResponse {
|
pub fn builder() -> builder::InstanceMigrateInitiateResponse {
|
||||||
builder::InstanceMigrateInitiateResponse::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -632,7 +632,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceMigrateStatusRequest {
|
impl InstanceMigrateStatusRequest {
|
||||||
pub fn builder() -> builder::InstanceMigrateStatusRequest {
|
pub fn builder() -> builder::InstanceMigrateStatusRequest {
|
||||||
builder::InstanceMigrateStatusRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -667,7 +667,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceMigrateStatusResponse {
|
impl InstanceMigrateStatusResponse {
|
||||||
pub fn builder() -> builder::InstanceMigrateStatusResponse {
|
pub fn builder() -> builder::InstanceMigrateStatusResponse {
|
||||||
builder::InstanceMigrateStatusResponse::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -753,7 +753,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceProperties {
|
impl InstanceProperties {
|
||||||
pub fn builder() -> builder::InstanceProperties {
|
pub fn builder() -> builder::InstanceProperties {
|
||||||
builder::InstanceProperties::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -890,7 +890,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceStateMonitorRequest {
|
impl InstanceStateMonitorRequest {
|
||||||
pub fn builder() -> builder::InstanceStateMonitorRequest {
|
pub fn builder() -> builder::InstanceStateMonitorRequest {
|
||||||
builder::InstanceStateMonitorRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -932,7 +932,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceStateMonitorResponse {
|
impl InstanceStateMonitorResponse {
|
||||||
pub fn builder() -> builder::InstanceStateMonitorResponse {
|
pub fn builder() -> builder::InstanceStateMonitorResponse {
|
||||||
builder::InstanceStateMonitorResponse::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1146,7 +1146,7 @@ pub mod types {
|
||||||
|
|
||||||
impl NetworkInterface {
|
impl NetworkInterface {
|
||||||
pub fn builder() -> builder::NetworkInterface {
|
pub fn builder() -> builder::NetworkInterface {
|
||||||
builder::NetworkInterface::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1235,7 +1235,7 @@ pub mod types {
|
||||||
|
|
||||||
impl NetworkInterfaceRequest {
|
impl NetworkInterfaceRequest {
|
||||||
pub fn builder() -> builder::NetworkInterfaceRequest {
|
pub fn builder() -> builder::NetworkInterfaceRequest {
|
||||||
builder::NetworkInterfaceRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -107,7 +107,7 @@ pub mod types {
|
||||||
|
|
||||||
impl CrucibleOpts {
|
impl CrucibleOpts {
|
||||||
pub fn builder() -> builder::CrucibleOpts {
|
pub fn builder() -> builder::CrucibleOpts {
|
||||||
builder::CrucibleOpts::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -155,7 +155,7 @@ pub mod types {
|
||||||
|
|
||||||
impl DiskAttachment {
|
impl DiskAttachment {
|
||||||
pub fn builder() -> builder::DiskAttachment {
|
pub fn builder() -> builder::DiskAttachment {
|
||||||
builder::DiskAttachment::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -269,7 +269,7 @@ pub mod types {
|
||||||
|
|
||||||
impl DiskRequest {
|
impl DiskRequest {
|
||||||
pub fn builder() -> builder::DiskRequest {
|
pub fn builder() -> builder::DiskRequest {
|
||||||
builder::DiskRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -315,7 +315,7 @@ pub mod types {
|
||||||
|
|
||||||
impl Error {
|
impl Error {
|
||||||
pub fn builder() -> builder::Error {
|
pub fn builder() -> builder::Error {
|
||||||
builder::Error::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -371,7 +371,7 @@ pub mod types {
|
||||||
|
|
||||||
impl Instance {
|
impl Instance {
|
||||||
pub fn builder() -> builder::Instance {
|
pub fn builder() -> builder::Instance {
|
||||||
builder::Instance::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -441,7 +441,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceEnsureRequest {
|
impl InstanceEnsureRequest {
|
||||||
pub fn builder() -> builder::InstanceEnsureRequest {
|
pub fn builder() -> builder::InstanceEnsureRequest {
|
||||||
builder::InstanceEnsureRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -478,7 +478,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceEnsureResponse {
|
impl InstanceEnsureResponse {
|
||||||
pub fn builder() -> builder::InstanceEnsureResponse {
|
pub fn builder() -> builder::InstanceEnsureResponse {
|
||||||
builder::InstanceEnsureResponse::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -513,7 +513,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceGetResponse {
|
impl InstanceGetResponse {
|
||||||
pub fn builder() -> builder::InstanceGetResponse {
|
pub fn builder() -> builder::InstanceGetResponse {
|
||||||
builder::InstanceGetResponse::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -560,7 +560,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceMigrateInitiateRequest {
|
impl InstanceMigrateInitiateRequest {
|
||||||
pub fn builder() -> builder::InstanceMigrateInitiateRequest {
|
pub fn builder() -> builder::InstanceMigrateInitiateRequest {
|
||||||
builder::InstanceMigrateInitiateRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -596,7 +596,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceMigrateInitiateResponse {
|
impl InstanceMigrateInitiateResponse {
|
||||||
pub fn builder() -> builder::InstanceMigrateInitiateResponse {
|
pub fn builder() -> builder::InstanceMigrateInitiateResponse {
|
||||||
builder::InstanceMigrateInitiateResponse::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -632,7 +632,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceMigrateStatusRequest {
|
impl InstanceMigrateStatusRequest {
|
||||||
pub fn builder() -> builder::InstanceMigrateStatusRequest {
|
pub fn builder() -> builder::InstanceMigrateStatusRequest {
|
||||||
builder::InstanceMigrateStatusRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -667,7 +667,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceMigrateStatusResponse {
|
impl InstanceMigrateStatusResponse {
|
||||||
pub fn builder() -> builder::InstanceMigrateStatusResponse {
|
pub fn builder() -> builder::InstanceMigrateStatusResponse {
|
||||||
builder::InstanceMigrateStatusResponse::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -753,7 +753,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceProperties {
|
impl InstanceProperties {
|
||||||
pub fn builder() -> builder::InstanceProperties {
|
pub fn builder() -> builder::InstanceProperties {
|
||||||
builder::InstanceProperties::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -902,7 +902,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceStateMonitorRequest {
|
impl InstanceStateMonitorRequest {
|
||||||
pub fn builder() -> builder::InstanceStateMonitorRequest {
|
pub fn builder() -> builder::InstanceStateMonitorRequest {
|
||||||
builder::InstanceStateMonitorRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -944,7 +944,7 @@ pub mod types {
|
||||||
|
|
||||||
impl InstanceStateMonitorResponse {
|
impl InstanceStateMonitorResponse {
|
||||||
pub fn builder() -> builder::InstanceStateMonitorResponse {
|
pub fn builder() -> builder::InstanceStateMonitorResponse {
|
||||||
builder::InstanceStateMonitorResponse::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1182,7 +1182,7 @@ pub mod types {
|
||||||
|
|
||||||
impl NetworkInterface {
|
impl NetworkInterface {
|
||||||
pub fn builder() -> builder::NetworkInterface {
|
pub fn builder() -> builder::NetworkInterface {
|
||||||
builder::NetworkInterface::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1271,7 +1271,7 @@ pub mod types {
|
||||||
|
|
||||||
impl NetworkInterfaceRequest {
|
impl NetworkInterfaceRequest {
|
||||||
pub fn builder() -> builder::NetworkInterfaceRequest {
|
pub fn builder() -> builder::NetworkInterfaceRequest {
|
||||||
builder::NetworkInterfaceRequest::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,7 @@ pub mod types {
|
||||||
|
|
||||||
impl BodyWithDefaults {
|
impl BodyWithDefaults {
|
||||||
pub fn builder() -> builder::BodyWithDefaults {
|
pub fn builder() -> builder::BodyWithDefaults {
|
||||||
builder::BodyWithDefaults::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,7 +107,7 @@ pub mod types {
|
||||||
|
|
||||||
impl Error {
|
impl Error {
|
||||||
pub fn builder() -> builder::Error {
|
pub fn builder() -> builder::Error {
|
||||||
builder::Error::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue