pub struct MigrationRepositoryResource {
pub id: Uuid,
pub origin_full_name: String,
pub destination_full_name: String,
pub visibility: String,
pub status: String,
pub error: Option<String>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Fields§
§id: Uuid§origin_full_name: String§destination_full_name: String§visibility: String§status: String§error: Option<String>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
impl ApiResource for MigrationRepositoryResource
Source§impl Clone for MigrationRepositoryResource
impl Clone for MigrationRepositoryResource
Source§fn clone(&self) -> MigrationRepositoryResource
fn clone(&self) -> MigrationRepositoryResource
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 Debug for MigrationRepositoryResource
impl Debug for MigrationRepositoryResource
Source§impl<'de> Deserialize<'de> for MigrationRepositoryResource
impl<'de> Deserialize<'de> for MigrationRepositoryResource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MigrationRepositoryResource
Source§impl PartialEq for MigrationRepositoryResource
impl PartialEq for MigrationRepositoryResource
Source§fn eq(&self, other: &MigrationRepositoryResource) -> bool
fn eq(&self, other: &MigrationRepositoryResource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MigrationRepositoryResource
Auto Trait Implementations§
impl Freeze for MigrationRepositoryResource
impl RefUnwindSafe for MigrationRepositoryResource
impl Send for MigrationRepositoryResource
impl Sync for MigrationRepositoryResource
impl Unpin for MigrationRepositoryResource
impl UnsafeUnpin for MigrationRepositoryResource
impl UnwindSafe for MigrationRepositoryResource
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