pub struct SyncBisyncResponse {
pub base_path: String,
pub listing1: String,
pub listing2: String,
pub log_file: String,
pub output: String,
pub session: String,
pub work_dir: String,
}Expand description
SyncBisyncResponse
JSON schema
{
"type": "object",
"required": [
"basePath",
"listing1",
"listing2",
"logFile",
"output",
"session",
"workDir"
],
"properties": {
"basePath": {
"description": "Base path for listing files.",
"type": "string"
},
"listing1": {
"description": "Path to the Path1 listing file.",
"type": "string"
},
"listing2": {
"description": "Path to the Path2 listing file.",
"type": "string"
},
"logFile": {
"description": "Path to the log file.",
"type": "string"
},
"output": {
"description": "Captured output from the bisync operation.",
"type": "string"
},
"session": {
"description": "Session name derived from the two filesystems.",
"type": "string"
},
"workDir": {
"description": "Absolute path to the bisync working directory.",
"type": "string"
}
}
}Fields§
§base_path: StringBase path for listing files.
listing1: StringPath to the Path1 listing file.
listing2: StringPath to the Path2 listing file.
log_file: StringPath to the log file.
output: StringCaptured output from the bisync operation.
session: StringSession name derived from the two filesystems.
work_dir: StringAbsolute path to the bisync working directory.
Trait Implementations§
Source§impl Clone for SyncBisyncResponse
impl Clone for SyncBisyncResponse
Source§fn clone(&self) -> SyncBisyncResponse
fn clone(&self) -> SyncBisyncResponse
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 SyncBisyncResponse
impl Debug for SyncBisyncResponse
Source§impl<'de> Deserialize<'de> for SyncBisyncResponse
impl<'de> Deserialize<'de> for SyncBisyncResponse
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 From<&SyncBisyncResponse> for SyncBisyncResponse
impl From<&SyncBisyncResponse> for SyncBisyncResponse
Source§fn from(value: &SyncBisyncResponse) -> Self
fn from(value: &SyncBisyncResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SyncBisyncResponse
impl RefUnwindSafe for SyncBisyncResponse
impl Send for SyncBisyncResponse
impl Sync for SyncBisyncResponse
impl Unpin for SyncBisyncResponse
impl UnsafeUnpin for SyncBisyncResponse
impl UnwindSafe for SyncBisyncResponse
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