pub struct SapEccSource {
pub tabular_source: TabularSource,
pub query: Option<Value>,
pub http_request_timeout: Option<Value>,
}Expand description
A copy activity source for SAP ECC source.
Fields§
§tabular_source: TabularSource§query: Option<Value>SAP ECC OData query. For example, “$top=1”. Type: string (or Expression with resultType string).
http_request_timeout: Option<Value>The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
Implementations§
Source§impl SapEccSource
impl SapEccSource
pub fn new(tabular_source: TabularSource) -> Self
Trait Implementations§
Source§impl Clone for SapEccSource
impl Clone for SapEccSource
Source§fn clone(&self) -> SapEccSource
fn clone(&self) -> SapEccSource
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 Debug for SapEccSource
impl Debug for SapEccSource
Source§impl<'de> Deserialize<'de> for SapEccSource
impl<'de> Deserialize<'de> for SapEccSource
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 SapEccSource
impl PartialEq for SapEccSource
Source§impl Serialize for SapEccSource
impl Serialize for SapEccSource
impl StructuralPartialEq for SapEccSource
Auto Trait Implementations§
impl Freeze for SapEccSource
impl RefUnwindSafe for SapEccSource
impl Send for SapEccSource
impl Sync for SapEccSource
impl Unpin for SapEccSource
impl UnwindSafe for SapEccSource
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