pub struct DataMigrationServiceList {
pub value: Vec<DataMigrationService>,
pub next_link: Option<String>,
}Expand description
OData page of service objects
Fields§
§value: Vec<DataMigrationService>List of services
next_link: Option<String>URL to load the next page of services
Implementations§
Trait Implementations§
Source§impl Clone for DataMigrationServiceList
impl Clone for DataMigrationServiceList
Source§fn clone(&self) -> DataMigrationServiceList
fn clone(&self) -> DataMigrationServiceList
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Continuable for DataMigrationServiceList
impl Continuable for DataMigrationServiceList
type Continuation = String
fn continuation(&self) -> Option<Self::Continuation>
Source§impl Debug for DataMigrationServiceList
impl Debug for DataMigrationServiceList
Source§impl Default for DataMigrationServiceList
impl Default for DataMigrationServiceList
Source§fn default() -> DataMigrationServiceList
fn default() -> DataMigrationServiceList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataMigrationServiceList
impl<'de> Deserialize<'de> for DataMigrationServiceList
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
Source§impl PartialEq for DataMigrationServiceList
impl PartialEq for DataMigrationServiceList
Source§impl Serialize for DataMigrationServiceList
impl Serialize for DataMigrationServiceList
impl StructuralPartialEq for DataMigrationServiceList
Auto Trait Implementations§
impl Freeze for DataMigrationServiceList
impl RefUnwindSafe for DataMigrationServiceList
impl Send for DataMigrationServiceList
impl Sync for DataMigrationServiceList
impl Unpin for DataMigrationServiceList
impl UnwindSafe for DataMigrationServiceList
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