pub struct UriInfo {
pub path: String,
pub rule_name: String,
pub service_name: Option<String>,
pub method_name: String,
}Expand description
{ “appName”:“springCloud-test”, “contextPath”:“/springcloud”, “path”:“/springcloud/order/path/{id}/name”, “pathDesc”:“”, “rpcType”:“springCloud”, “serviceName”:“org.apache.shenyu.examples.springcloud.controller.OrderController”, “methodName”:“testRestFul”, “rule_name”:“/springcloud/order/path/{id}/name”, “parameterTypes”:“java.lang.String”, “enabled”:true, “pluginNames”:[], “registerMetaData”:false, “timeMillis”:1724062308618, “addPrefixed”:false }
Fields§
§path: StringThe shenyu rule path.
rule_name: StringThe shenyu rule name.
service_name: Option<String>The handler mod name.
method_name: StringThe handler method name.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UriInfo
impl RefUnwindSafe for UriInfo
impl Send for UriInfo
impl Sync for UriInfo
impl Unpin for UriInfo
impl UnwindSafe for UriInfo
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