pub struct RemotePattern {
pub id: String,
pub name: String,
pub content: String,
pub version: i64,
pub deleted: bool,
}Expand description
A single remote pattern in a pull response.
Fields§
§id: String§name: String§content: String§version: i64§deleted: boolTrait Implementations§
Source§impl Debug for RemotePattern
impl Debug for RemotePattern
Source§impl<'de> Deserialize<'de> for RemotePattern
impl<'de> Deserialize<'de> for RemotePattern
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
Auto Trait Implementations§
impl Freeze for RemotePattern
impl RefUnwindSafe for RemotePattern
impl Send for RemotePattern
impl Sync for RemotePattern
impl Unpin for RemotePattern
impl UnsafeUnpin for RemotePattern
impl UnwindSafe for RemotePattern
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