24 lines
807 B
Plaintext
24 lines
807 B
Plaintext
error: expected `from_py_with`
|
|
--> $DIR/invalid_argument_attributes.rs:4:29
|
|
|
|
|
4 | fn invalid_attribute(#[pyo3(get)] param: String) {}
|
|
| ^^^
|
|
|
|
error: expected `=`
|
|
--> $DIR/invalid_argument_attributes.rs:7:32
|
|
|
|
|
7 | fn from_py_with_no_value(#[pyo3(from_py_with)] param: String) {}
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: expected `from_py_with`
|
|
--> $DIR/invalid_argument_attributes.rs:10:31
|
|
|
|
|
10 | fn from_py_with_string(#[pyo3("from_py_with")] param: String) {}
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: expected string literal
|
|
--> $DIR/invalid_argument_attributes.rs:13:58
|
|
|
|
|
13 | fn from_py_with_value_not_a_string(#[pyo3(from_py_with = func)] param: String) {}
|
|
| ^^^^
|