1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
use errors::{self, create_rfc_error};
use binding::*;
use std::marker::PhantomData;
use Connection;
use SapString;
#[derive(Debug)]
pub struct FunctionDescription<'a> {
pub ( crate ) internal: RFC_FUNCTION_DESC_HANDLE,
pub ( crate ) con: PhantomData<&'a Connection>
}
impl<'a> FunctionDescription<'a> {
pub fn name(&self) -> errors::Result<String> {
let mut error_info: RFC_ERROR_INFO = RFC_ERROR_INFO::default();
let mut name_buffer: [i8; 62] = [0; 62];
unsafe {
RfcGetFunctionName(self.internal, name_buffer.as_mut_ptr() as *mut i8, &mut error_info);
match error_info.code {
RFC_RC::RFC_OK => Ok(SapString::from(name_buffer.as_ref()).as_string()?),
_ => Err(create_rfc_error(&error_info).into())
}
}
}
}