Operator.OperatorInfoModule for accessing operator configuration and capabilities.
val name : Opendal_core.Operator.operator_info -> stringname info gets the name of the operator instance.
val scheme : Opendal_core.Operator.operator_info -> stringscheme info gets the storage scheme (e.g., "fs", "s3", "gcs").
@example
printf "Using scheme: %s\n" (OperatorInfo.scheme info)val root : Opendal_core.Operator.operator_info -> stringroot info gets the root path configured for the operator.
@example
printf "Root path: %s\n" (OperatorInfo.root info)val capability :
Opendal_core.Operator.operator_info ->
Opendal_core.Operator.capabilitycapability info gets the capability information for the operator.
@example
let cap = OperatorInfo.capability info in
if Capability.write cap then print_endline "Write operations supported"