@@ -13,7 +13,7 @@ use std::fmt::Debug;
13
13
/// Projects, the Organization datatype should implement this trait.
14
14
/// ```
15
15
/// # use diesel::prelude::*;
16
- /// # use nexus_db_model::DatastoreCollection ;
16
+ /// # use nexus_db_model::DatastoreCollectionConfig ;
17
17
/// # use nexus_db_model::Generation;
18
18
/// #
19
19
/// # table! {
@@ -48,7 +48,7 @@ use std::fmt::Debug;
48
48
/// pub rcgen: Generation,
49
49
/// }
50
50
///
51
- /// impl DatastoreCollection <Project> for Organization {
51
+ /// impl DatastoreCollectionConfig <Project> for Organization {
52
52
/// // Type of Organization::identity::id and Project::organization_id
53
53
/// type CollectionId = uuid::Uuid;
54
54
///
@@ -82,7 +82,7 @@ pub trait DatastoreCollectionConfig<ResourceType> {
82
82
/// Disks, the Instance datatype should implement this trait.
83
83
/// ```
84
84
/// # use diesel::prelude::*;
85
- /// # use nexus_db_model::DatastoreAttachTarget ;
85
+ /// # use nexus_db_model::DatastoreAttachTargetConfig ;
86
86
/// #
87
87
/// # table! {
88
88
/// # test_schema.instance (id) {
@@ -114,7 +114,7 @@ pub trait DatastoreCollectionConfig<ResourceType> {
114
114
/// pub time_deleted: Option<chrono::DateTime<chrono::Utc>>,
115
115
/// }
116
116
///
117
- /// impl DatastoreAttachTarget <Disk> for Instance {
117
+ /// impl DatastoreAttachTargetConfig <Disk> for Instance {
118
118
/// // Type of instance::id and disk::id.
119
119
/// type Id = uuid::Uuid;
120
120
///
0 commit comments